Home Forums WoodMart support forum Mobile menu style Reply To: Mobile menu style

#386152

Hello,

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

1) To Remove the close text:

.close-side-widget.wd-action-btn.wd-style-text.wd-cross-icon a {
    font-size: 0;
}

2. To change the background:

.wd-side-hidden.wd-opened {
    background-color: black;
}

3. To Change the color of Seperator:

.mobile-nav .wd-heading {
    border-bottom: 1px solid red;
}

4. To Chnage the typography:

.wd-nav-mobile li a {
    font-size: 22px;
    color: red;
    font-family: 'Playfair Display';
}

Best Regards