Home Forums WoodMart support forum Header typography colors

Header typography colors

Viewing 4 posts - 1 through 4 (of 4 total)
  • Author
    Posts
  • #395896

    001wgreen
    Participant

    how can i change active header menu item and hover menu item color? (automotive demo content) i have a white background for the menu area, familiar with the header builder, but cant find the setting, have white text on white background, need all black. thank you.

    Attachments:
    You must be logged in to view attached files.
    #395899

    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.current-menu-item>a {
    color: red;
    }
    
    For hover try the following Custom CSS:
    
    .wd-nav[class*="wd-style-"]>li > a:hover {
        color: orange;
    }

    Best Regards

    #395901

    001wgreen
    Participant

    thank you applied, worked for active menu item, but still need to change the hover color to black, can you provide fix for that? thank you!

    #395902

    Hello,

    Please try adding the following CSS for that.

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

    Best Regards

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