About Mobile menu expand Icon
-
Hi, My client wants to change mobile menu (Categories) expand Icon Now is > and when you pres Icon V apears on mobile menu categories. He wants ‘ + ‘ instead ‘ > ‘ and ‘ – ‘ instead ‘ V ‘ where I can change that. Also in main menu Icons that contains sub menu V are to small how to make bigger
Attachments:
You must be
logged in to view attached files.
Hello,
This can be implemented with FotnAwesome icons:
.mobile-nav .wd-nav-opener:after {
font-family: "Font Awesome 5 Free";
font-weight: 900;
content: "\f067";
}
.mobile-nav .wd-nav-opener.wd-active:after {
content: "\f068";
transform: none;
}
The close button can not be done with custom CSS unfortunately.
Best Regards.
Can you please add additional solution that was previously asked
In main menu Icons for menu links that contains sub links have sigh V and are to small on menu how to make bigger
Hello,
Please use the below custom CSS code and paste it to Theme Settings >> Custom CSS >> Mobile CSS section:
span.wd-nav-opener.wd-active:after {
font-size: 20px;
}
Best Regards.