Home Forums WoodMart support forum Grid lines Menu

Grid lines Menu

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

    RS53
    Participant

    Hi,

    Is it possible to remove the grid lines in the menu bar? Please see example. They appear only if there is a subcategorie available and for drop down.

    Thanks.

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

    Luke Nielsen
    Keymaster

    Hello,

    Try to use the code below for help:

    .mobile-nav .wd-nav-opener {
        border-left: none;
        border-bottom: none;
    }

    Define it in Theme Settings -> Custom CSS.

    Kind Regards

    #573341

    RS53
    Participant

    Thanks, works with !important behind both lines.

    How to change the entire background color of the menu and the font color?

    #573513

    Luke Nielsen
    Keymaster

    Hello,

    Check the code below for help:

    .mobile-nav .wd-nav-mobile li a {
        color: #333;
    }
    
    .mobile-nav {
        background-color: #f2e4e4;
        color: #da2222
    }
    
    .mobile-nav .wd-nav-mobile li:is(.current-menu-item,.wd-active)>a {
        color: yellow
    }

    Kind Regards

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