Click to See Complete Forum and Search --> : Why on earth won't the link underlines go away?!


chausfeld
12-09-2008, 03:55 PM
here's the page:
http://www.concrete-creative.com/sharecipe/addrecipe_tabs.html

the links should NOT be underlined. here's the css:
http://www.concrete-creative.com/sharecipe/tabs.css

now why in the world would they be underlining? I put text-decoration:none underneath EACH SECTION and they still show a blue line!

HELP!!!!

toicontien
12-09-2008, 03:58 PM
It's a specificity issue with CSS. You might need to specify the :link, :hover, :active, and :focus pseudo classes for <a> tags.

Jerico
12-09-2008, 03:58 PM
You'll need to state the the text-decoration on each link state

a:link,a:visited,a:active,a:hover{
text-decoration:none;
}

chausfeld
12-09-2008, 04:06 PM
sorry, meant for CSS forum!

chausfeld
12-09-2008, 04:09 PM
thank you - that worked!