Home Forums WoodMart support forum Menu Background Hover Colour

Menu Background Hover Colour

Viewing 6 posts - 1 through 6 (of 6 total)
  • Author
    Posts
  • #356032

    IanB
    Participant

    How do I change the background colour of the main menu on hover ?

    Thanks

    #356148

    Hello,

    Please try adding the following Custom CSS in the Global Custom CSS area under Theme Settings >> Custom CSS.

    .wd-nav[class*="wd-style-"]>li > a:hover {
        color: red;
    }

    Best Regards

    #356155

    IanB
    Participant

    Thanks that changes the menu text colour but not the menu background colour ?

    How do I change the background colour on hover ?

    Also is it possible to make it stay that colour when using the html menu drop down for that link ?

    #356170

    Hello,

    Please try adding the following Custom CSS in the Global Custom CSS area under Theme Settings >> Custom CSS.

    .wd-nav[class*="wd-style-"]>li > a:hover {
        background-color: aqua;
    }

    Best Regards

    #356174

    IanB
    Participant

    Is it possible to keep the selected menu link this colour when accessing the HTML Mega Menu also ?

    #356185

    Hello,

    Please try adding the following Custom CSS in the Global Custom CSS area under Theme Settings >> Custom CSS.

    .wd-nav >li.current-menu-item>a {
        background: aqua;
    }

    Best Regards

Viewing 6 posts - 1 through 6 (of 6 total)