Home Forums WoodMart support forum customise submenu in woodmart

customise submenu in woodmart

Viewing 2 posts - 1 through 2 (of 2 total)
  • Author
    Posts
  • #259091

    kppyeung
    Participant

    hi there,

    I would like to customise the submenu at desktop version to have a transparent background, with a white 2 pixels border, 5 pixels radius in corners, item color is white and turns #666666 when hover,

    tried searching css code in support and in the internet, no luck for the time being, any clue?

    thx in advance.

    #259159

    Hello,

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

    body .menu-simple-dropdown .sub-menu-dropdown, .menu-simple-dropdown .sub-sub-menu {
        background-color: transparent;
        border: 2px solid #866c40;
        border-radius: 5px;
    }
    body ul.sub-menu li a {
        color: white!important;
    }
    body ul.sub-menu li a:hover {
        color: #666666!important;
    	background-color: transparent!important;
    }

    Best Regards

Tagged: ,

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