• Resolved ddelfel

    (@ddelfel)


    I am having trouble removing text decoration during hover on my Left Nav titles(blueish). I want the titles to show the opposite of the menu items(grey).

    Here is the site:
    lghwpmodelb.net

Viewing 3 replies - 1 through 3 (of 3 total)
  • Try this in your child theme:

    .widget a:hover, .widget a:focus, .widget a:active {
        text-decoration: none;
    }

    Thread Starter ddelfel

    (@ddelfel)

    WPyogi, that’s not the change I need. That changes the grey links. I want the blue to change.

    I have tried this code but the hover fails to respond.

    .widget-title a:hover, .widget-title a:focus, .widget-title a:active {
    text-decoration: none;
    }

    Any other suggestions?
    Thanks

    Thread Starter ddelfel

    (@ddelfel)

    For those in my similar situation, this was related to my fix.

    .textwidget a:hover, .textwidget a:focus, .textwidget a:active {
    text-decoration: none!Important;
    }

    Hope this helps someone.

Viewing 3 replies - 1 through 3 (of 3 total)
  • The topic ‘widget-title hover?’ is closed to new replies.