remove underlining in menus

Events happening in the community are now at Drupal community events on www.drupal.org.
Gerben Zaagsma's picture

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

kmonty's picture

Try

"text-decoration: none;"

Hi, thanks but this is only

Gerben Zaagsma's picture

Hi, thanks but this is only a spelling mistake in my post...

Follow-up: this is

Gerben Zaagsma's picture

Follow-up: this is particular to Safari. Will post when found out more.

I figured out how you can

whisperedecho's picture

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.