If scroll down on the right side you'll see a box with the title "Ads"
How do I make the font color white (for that sidebox) without making the main body text white?
My website: www.AR-Auto.com
I tried putting this class into my template.css:
a.adlinks { color:#ffffff; }
and then updating the ads by adding a class to them:
<a class="adlinks" target="_blank" href="http://totalpartssource.com/">Total Parts Source<br> Your #1 source for<br> new and used parts!<br><br></a
But it did not work!
Well, just as I said in the
Well, just as I said in the last thread concerning this same question, it could be a specificity issue (check link in other thread). Check out Firebug plugin for Firefox.
Duplicate question: http://csscreator.com/topic/change-font-color-sidebox You should probably continue there instead of starting new threads for the same question.
Try adding !important to the
Try adding !important to the class
Example:
a.adlinks { color:#ffffff !important; }
This will override previous inheritance
makr wrote:... This will
... This will override previous inheritance
Or more correctly in this case, it overrides specificity. It's a much better idea to do it correctly than to apply a quick fix without understanding why it's overridden in the first place. This was already solved in the duplicate thread.
Thread closed if it needs
Thread closed if it needs continuing do so in thread mentioned and linked to.
Also please don't proffer !important as a solution it's hacky and bad coding WP do it a lot!.