Hi!
I’m trying to change the font weight on my heading tags and my css won’t work.
I tried this in my child theme style.css:
h1, h2, h3, h4, h5, h6 {
font-weight: 300; }
But the font weight remains at 600.
Any idea how I can get the font weight down to 300?
Thanks!
Will
Hey Will!
Please try adding !important rule as following
h1, h2, h3, h4, h5, h6 { font-weight: 300 !important; }
Best regards,
Yigit
Hi Yigit,
Thanks for such a quick reply.
Unfortunately this hasn’t worked, do you have any other solutions?
Thanks,
Will
Hi,
I applied the css in the quick css box in the Theme Options instead of in my child theme and the changes have worked.
Do you have any idea why the css in my child theme wouldn’t be working?
Thanks,
Will
Hey!
Do you mind creating a temporary admin login and posting it here privately?
Best regards,
Yigit
Hi,
After a while troubleshooting it turns out cloudflare was caching my pages and this was where the problem arose.
I’ve managed to get everything working again now,
Thanks!
Will