Home › Forums › CSS › WordPress : How to target the following themes link with css ? › Reply To: WordPress : How to target the following themes link with css ?
November 13, 2016 at 11:54 pm
#247808
Participant
Does the theme has !important
on the property? if so your rule has to be more specific than the current rule setup for the element and have !important
property defined.
If the theme does not define !important
than just make sure your rule is applied later and more specific or add the !important
property.
In Firebug/Developer tools you can set a “sticky” state for the element (basically make it hover without actually hovering over it) and then inspect the rules applied.
You can read more about css specificity here