Moove theme font sizes

Moove theme font sizes

by Alvaro Moodle Eurecat -
Number of replies: 2

Hello;

Could you please tell me the css code i have to add to change the font size for H1 to h6?

If I change it, then can I change the size for a specific texte?

I would like to change the font size for the topics of the course: (can you please help me with it?)

(Edited by Mary Evans - corrected spelling in original title - original submission Thursday, 5 September 2019, 12:27 PM)

Average of ratings: -
In reply to Alvaro Moodle Eurecat

Re: Moove theme font sizes

by Rajnish Rao -
Hi Alvaro,

If you want to override CSS through UI, go to Site administration(BASE_URL/admin/search.php) page and click on appearance tab. Under the theme section click on the name "Move". On the the setting page of this theme click on the Advance tab. There you will see "Raw SCSS" field. You can write your CSS there.

To quickly navigate to "Move" theme settings page: "BASE_URL/admin/settings.php?section=themesettingmoove"

To override CSS for all heading tags you can write CSS as follows:
h1 {
font-size:28;
}
h2 {
font-size:26;
}
 
and so on...
Similarly you can override for topics
Hope this helps!

(Edited by Mary Evans - corrected spelling in original title - original submission Friday, 6 September 2019, 10:55 AM)