the link is www.quickadder.com how do i make the links at the top of the page (home learn more get featured referral code) #99FF72 (light green), i looked thru the CSS but I have no absolute clue on how to do it. I resorted to changing random numbers, but that still didn't work
Look at: #links a:link { color: #99FF722; text-decoration: none; } #links a:visited { color: #555555; text-decoration: none; } #links a:active { color: #555555; text-decoration: none; } #links a:hover { color: #46B7EF; text-decoration: none; } Code (markup): Make It: #links a { color: #99FF722; text-decoration: none; } #links a:link { color: #99FF722; text-decoration: none; } #links a:visited { color: #99FF72; text-decoration: none; } #links a:active { color: #99FF72; text-decoration: none; } #links a:hover { color: #46B7EF; text-decoration: none; } Code (markup):