I am using a theme in wordpress framework and I made some articles with nested titles like ..
* FooFoo Title
rest of article
and I make the color of title (FooFoo Title) Black then a Theme updated with a Dark style so the black titles no longer visible so I tried to change the colors it appear like that ..
<h5> <span style="color: red">FooFoo Title</span> </h5>
so I went to Theme Settings and make a new attribute in Custom-CSS and it’s not working unless I disable the color in (span style tag) using (Developer Tools) in browser.
I can’t edit all my 1000 articles titles .. So help me .. Thanks
Have you tried adding
!importantto your styles?Example:
EDIT: USE
!importantONLY WHEN ABSOLUTELY NEEDED!Idealy you should remove the inline styles and the !important from your css!