How to Change Body Font? Mine is stuck

Hello,

I would really appreciate it if someone could help me understand how to change my body font. I have tried using body {font-family: Avenir, Arial, Helvetica, Futura, sans-serif; font-size: 16px; padding:0; margin:0; }

and

div.entry-content {
font-family: times new roman, serif;
line-height: 165%;
font-size: 13pt;
}

in my CSS box but for some reason the font is stuck on Century Gothic and I don’t know how to change it! Please someone help me.

My URL is www.thesophiaideas.com

Hi @thesophiaideas,

I hope you are well today and thank you for your question.

You can try achieving this by adding the following CSS code in the Custom CSS option of your theme on the below path.

Admin Area -> Appearance -> Customize -> Activello Options -> Other -> Custom CSS

#page .entry-content * {
    font-family: serif;
}

Please change the font serif in the above code to the whatever font you want to set for post and page content.

Best Regards,
Movin