Posted by Gerben Zaagsma on July 21, 2008 at 4:01pm
Sorry for asking something so simple but I just cannot find the solution. I am trying to remove the underlining from links in the menus, I know how to do it but I cannot figure out which style sheet to modify. I tried in the zen subtheme standard sheets, also used Firebug to see (which gave me html-elements which I put in the subtheme folder and enabled in .info file) and system-menus; tried to add "textpdecroation: none;" in several places (links, lists etc) but the underlining is still there.
TIA,
Gerben
Edit: I see it also happens in the footer, I keep on looking for the right sheet..
Comments
Spelling
Try
"text-decoration: none;"
Hi, thanks but this is only
Hi, thanks but this is only a spelling mistake in my post...
Follow-up: this is
Follow-up: this is particular to Safari. Will post when found out more.
I figured out how you can
I figured out how you can remove the underline. Only took me forever lol.
This is what I put in my code:
li a /* Remove underline from links */{
text-decoration: none;
}
You have to put this in your default .css file to override the default styling for links. Hope that helps.