All Collections
Teachery Help Documentation
Advanced Features
Custom CSS Tricks: Course Body Font, Full Width Header Images, Custom Favicons, and more
Custom CSS Tricks: Course Body Font, Full Width Header Images, Custom Favicons, and more
Jason Zook avatar
Written by Jason Zook
Updated over a week ago

With Teachery, we've tried to create a simple course platform that takes the headache out of course creation. That being said, simplicity can be limiting, which is why we allow for custom CSS in multiple areas of your online course(s).

*Important Disclaimer #1* While we are happy to allow for custom CSS, we can't ensure support for any custom CSS you add to your course(s). We'll do our best to help, but know that custom CSS can cause issues if not added properly. Proceed at your own risk!

*Important Disclaimer #2* When you add custom CSS to your course, most often it will NOT impact what you see when you are editing the course ("editor pages"). Please preview your course pages and you should see your custom CSS working. Our editor uses different CSS styles.

⭐️ UPDATE: We added the ability to change your header images to full width using a simple toggle button! No need for fancy CSS for this.

Where Do You Add Custom CSS in Your Teachery Course?

Great first question! When editing your course, look in the left sidebar and scroll to Style Your Course, click on it, and you'll see the Add Custom CSS page.

Boom! That's the place to add your CSS code. We've tried to make the process as intuitive as possible:

  • You'll add your CSS in the editor area (and it will validate on the fly!)

  • You can click the Apply Changes button to see your CSS on the page you're viewing

  • If you're happy, click Publish Changes button to set your CSS live in your course πŸŽ‰


    ​
    ​ 


    ​

CSS Example: Course Body Font and Heading Fonts

Add this snippet of code (below) to the Add Custom CSS page to be able to update your course body font and headings all in one go:


p, ul, li, ol, .questions, .description, .module-meta, .module-transcript, .get-started, .inner {font-size: 17px !important; line-height: 3rem !important; font-family: Roboto !important;}

h1, h2, h3, h4 {font-family: Playfair Display !important; line-height: 150% !important;}ul, ol {margin-bottom: 40px !important;}

1️⃣ Changing the BODY font and size throughout your entire course

The first part of this custom CSS (p, ul, li, ol, .questions, .description, .module-meta, .module-transcript, .get-started, .inner) sets the:Β 

  1. Body font throughout the entire course (to 17px)

  2. The font itself (to Roboto font, one of our supported custom Google fonts*)

  3. Adjusts the line height to have more spacing (to 3rem)

2️⃣ Changing the HEADING font and size throughout your entire course

The second part of this custom CSS (h1, h2, h3, h4) sets the:

  1. Heading 1, Heading 2, Heading 3, and Heading 4 font (to Playfair Display font)

  2. Adjusts the line height to have more spacing (to 150%)

*You can see our list of supported Google fonts by going to the Overview lesson of your course, clicking the Actions Menu (purple button top right), then clicking "Change Course Font." We recommend choosing the body font from the Change Course Font dropdown menu to match the custom CSS body font.
​ 
​ 

CSS Example: Customize the Button Color and Text Color on Your Login and Password Reset Pages

The Course Login and Password Reset pages can be customized even further using our Add Custom CSS page. You'll find these pages listed in the dropdown menu at the top of the preview window while in the Add Custom CSS page of your course:

Here's the snippet of CSS to add:


.editor-button:first-child {background-color:#dea9a2 !important;}.editor-button:first-child:hover {background-color:#4a252f !important;}.editor-button.editor-button-clear {color:#4a252f !important;}.editor-button.editor-button-clear:hover {color:#a3907c !important;}

Just update the colors in the CSS to match your branding and you're good to go! The buttons and text on these pages can now match your branding! πŸ™Œ
​

CSS Example: Adding a Background Image to Your Entire Course

If you want to spice up your course design and add a background texture or image, you can absolutely make that happen! Here's the code example:


#course-background {background: url('http://image.jpg') no-repeat bottom center !important; background-size: contain !important;}

πŸ“Œ Don't forget to update the http://image.jpg to your own image name/URL!

πŸ’‘ PRO-TIP: In any lesson in your course, upload an image via our image uploader, then right-click and Copy Image Address. You can then remove the image from your lesson and paste the image address into the CSS code!
​


​ 

CSS Example: Adding a Drop Shadow Effect to Your Course (Default Template)

This is a nice effect if you want your course to look like it has some visual depth. Here's the CSS you can use:


#lessons-page { margin-bottom:75px; box-shadow: 0px 20px 30px rgba(0,0,0,0.2)}

You can thank fellow Teachery customer Jacob Wyatt for figuring this one out!

CSS Example: Hide Lesson Resources Box and Center Lesson Content

If you want your lesson content to be centered within the lesson without using the right-column Lesson Resources box:

/* Hides sidebar on front-facing course, but not inside editor */ #lessons-page aside:not(.fr-view) { display: none; } 

/* Normalizes spacing of lesson canvas */ .template-2 article:not(.fr-view) { width:100%; margin: 50px 0px 50px 0px; }

CSS Example: Hide Sublessons Box in Right Column of Lesson

You'll find a Sublessons box ("More in this lesson") under the Lesson Resources box in the right column of your course. If you do not wish to display this Sublessons box you can add this CSS:

#lessons-page #sublessons {
display: none;
}

⭐️ Adding a Custom Favicon To Your Course

Favicons are an often forgotten part of the website experience. By default, your course will inherit the Teachery favicon. To override this, you need one snippet of code added to the Course Settings > Manage Options > Head Tag Code Injection section of the course editor:

<link rel="icon" type="image/png" href="https://d1j8pt39hxlh3d.cloudfront.net/development/emojione/2.0/842/png/7594.png">

You'll want to make sure you update the image URL in the code snippet above to whatever favicon you want to use!

πŸ’‘ NOTE: If you use a JPG or PNG and the favicon is not displaying, you can convert the image to a .ico (icon) file using CloudConvert. Then upload the .ico file and use the URL for your favicon.

If you've never made a favicon before, you can use the free Favicon Generator to help you. If you need a place to upload your favicon so you can link to it, we recommend imgur.com for image storage.

**
​ 
Hope you enjoy all these CSS tricks! 😎

Did this answer your question?