removing underline in widget links
-
What term do I use to refer to the text of the widgets? I have tried to get rid of the underlines when users hover over the links in the widgets by adding various CSS language along the lines of…
.widget,
.widget a:link {
text-decoration: none;
}It’s probably apparent that I do not understand CSS.
I appreciate your help!
-AmyThe blog I need help with is: (visible only to logged in users)
-
You are on the right track and just need a different selector. Change the selector (part before the opening { bracket to this:
.widget-area a:active, .widget-area a:hover
- The topic ‘removing underline in widget links’ is closed to new replies.