Site logo

Archived topic

Font Size Archive page small

5 replies · Started by Karsten on June 15, 2021

Viewing posts 1–6 of 6

Hi there,

the FinanceAds Tools plugin is setting a body font size of 13px - which is overriding the theme settings - this is the CSS the plugin is adding:

body{
    font-family: "Helvetica Neue", Helvetica, Arial, sans-serif !important;
    font-size: 13px !important;
    color: #444444 !important;
    line-height: 1.428571429 !important;
}

Which is a pain as they have added !important to all their CSS rules. Plugins really should target their own HTML in their CSS - writing global styles like this is not good. Is there a setting in the plugin to remove their styles ?

Hi David,

thank you very much for your help to fix this issue.

I will contact Finance Ads and ask them to change their CSS rules. In the plugin it is not possible to change anything in the CSS.

Best

Karsten

If you want to temporaily fix the issue on the archive pages you can use some CSS:

body .entry-summary {
    font-size: 16px !important;
}

Which can be removed when the plugin developer updates their code.

ah, yes, great, and thank you very much.

You have read my mind...!

Have a good time.

Karsten

Glad to be of help

This archived topic is closed to new replies.