I’ve tried the following code however it does not seem to work.
Could you kindly advise?
I’m trying to change the font size and weight of the footer (contact us and site links section)
#footer .textwidget {
font-size: 4px !important;
font-weight: 300 !important;
}
Webpage:
Hey xxxinkxxx,
You are not targeting the actual elements, try this if you want to target paragraphs for instance:
#footer .textwidget p {
font-size: 4px !important;
font-weight: 300 !important;
}
Best regards,
Rikard
looks like I need to brush up on my CSS, thanks!