Home Forums WoodMart support forum Inverting / Changing Mobile menu Colors

Inverting / Changing Mobile menu Colors

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

    [email protected]
    Participant

    Hi,

    currently i am having mobile menu as black background and white font what i am looking forward to achieve is do the inverse which is white background and black menu fonts. can you please assist me how can i achieve that?

    #204907

    Hello,

    Please add this code to the Theme Settings > Custom CSS > Global:

    body .mobile-nav {
        background-color: white;
    }
    .color-scheme-dark ul li {
        background-color: white;
    }
    body .mobile-nav ul li .up-icon{
    background-color: white;
    }
    body .mobile-nav .sub-menu-dropdown ul:before {
        color: black;
    }
    body .mobile-nav ul li.current-menu-item>a {
        color: black;
    }
    body .mobile-nav ul li a {
            color: black;
    }
    body .mobile-nav .icon-sub-menu:after, 
    body .mobile-nav .icon-sub-menu:before {
        background-color: white;
    }
    body .mobile-nav .searchform button {
        color: black;
    }

    Best Regards

    #205268

    [email protected]
    Participant

    The provided CSS didnt solve my issue, i have checked in incognito as well as did Ctrl + F5 (and tried on different browser. the menu is still dark and the code has no effect.

    #205301

    Hello,

    Please deactivate all the cache plugins and provide the site admin access to the private area.

    Best Regards

    #205307

    [email protected]
    Participant

    you can access the site by using the blow credentials

    #205399

    Hello,

    Please replace the code with this one:

    body.dropdowns-color-light  .mobile-nav {
        background-color: white;
    }
    body.dropdowns-color-light .site-mobile-menu li a {
        border-color: rgba(255,255,255,.15);
        color: black;
    }
    body.dropdowns-color-light .mobile-nav .searchsubmit, 
    body.dropdowns-color-light .woodmart-search-dropdown .searchsubmit {
        color: black;
    }

    Best Regards

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