I need underline to show for my links when I hover. How/where do I set that?

Comments

Jeff Burnz’s picture

In CSS, you can use the Custom CSS setting, you need to set text-decoration: underlined on hover and focus states.

System Lord’s picture

That's just beautiful!!! Thank you!

I used:
------------------------
a:link,
a:visited {
text-decoration: none;
}
a:hover,
a:active,
a:focus {
text-decoration: underline;
}
----------------------
My apologies for asking for specific code, but how do i keep my tabbed link labels from being affected with this?

Jeff Burnz’s picture

Well, you can go two ways, either make the hover/underline style more specific, aka prefix it with a class or classes, for example:

.node a:hover,
.node a:active,
.node a:focus {
  text-decoration: underline;
}

Or, you can take styles away using a class or id etc, for example:

.menu a:hover,
.menu a:active,
.menu a:focus {
  text-decoration: none;
}
System Lord’s picture

Thank you much, Jeff!