removing underline in widget links

  • Unknown's avatar

    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!
    -Amy

    The blog I need help with is: (visible only to logged in users)

  • Unknown's avatar

    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.