Tagged: font, heading, heading font
Hi guys
I would like to make all the headings of one of my clients’ website the same as the text, which is Arial font. However, when I go into Advanced Styling, Arial font is not available.
Is there quick css that I can add which will make all heading fonts Arial?
Many thanks
Ivana
Hi Ivana!
Try adding the following CSS to your Quick CSS (located under the Styling Tab in the theme options) or the custom.css file in the css folder of your theme files:
h1, h2, h3, h4, h5, h6 {
font-family: Arial, sans-serif;
}
Regards,
Devin
Many thanks!