Home › Forums › WoodMart support forum › Mobile menu style › Reply To: Mobile menu style
June 25, 2022 at 10:50 am
#386152
Aizaz Imtiaz Awan
Keymaster
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