Boost Theme - Course Sections Reduce font size

Boost Theme - Course Sections Reduce font size

by Syed H -
Number of replies: 2

Hello, Course Sections/Topics font size is too big. Is there a way to resize it? I am using Moodle 3.7 and Boost theme.

topic

Thank you.

Average of ratings: -
In reply to Syed H

Re: Boost Theme - Course Sections Reduce font size

by Louisa van der Linden -
Yes, you can do this under Administration > Appearance > Theme > Boost
In the second SCSS block add:
#page-content .course-content .sectionname{
font-size: 20px;}

where "20" is your desired size.

You can have different sizes for topic courses and weekly based courses with changing the css selector. This will change it for week based course sites only:

#page-course-view-weeks .course-content .sectionname{
font-size: 35px;}


In reply to Louisa van der Linden

Re: Boost Theme - Course Sections Reduce font size

by Syed H -
It worked...Thank you.