Hi all,
I am using the dawn 4.0 theme and I cannot get the Body font to change, regardless of what font I select.
I am trying to find a sans-serif type font to complement the Heading, but no matter what I choose, the body font stays the same (it looks like a Times Roman type serif font). Any suggestions or is this perhaps a known bug?
Here is a screenshot:
1 Like
Hi @scottb77 ,
Do you mind sharing your website so we can take a look? The body font is being use in different places. That place my be not one of the places
Hi,
Please go to Theme > Actions > Edit code > Assets > base.css.
The the code below to assets/base.css.
body, a, strong {
font-family: sans-serif !important;
}
If you like to change all text to sans-serif, you can use the code below.
body, a, p, h1, h2, h3, h4, h5, h6, div, span, button, label, ul, li, strong {
font-family: sans-serif !important;
}
Hope it helps.
Thanks.
1 Like
Thank you very much. This worked great.