Change the text color of the menu links
-
Hello,
I’m using the WoodMart theme and I would like to modify the style of the category dropdown menu (the white panel that opens on the left side with the list: Laptops, Smartphones, etc. – as shown in the screenshot).
I would like to:
1. Change the text color of the menu links
2. Change the font of the menu
Could you please tell me where exactly in the theme options I can change these settings? Or if not, which CSS selector should I target to do it via custom CSS?
Thank you in advance!
Attachments:
You must be
logged in to view attached files.
Hello,
To change the text color of the menu links and font family, please use the below given custom CSS code and paste it to Theme Settings >> Custom CSS >> Global CSS section:
.wd-nav-sticky>li>a {
font-size: 14px;
text-transform: unset;
color: red;
font-family: 'Madimi One';
}
Note: Change the font size, color and family in the above custom CSS code as per your requirements.
Best Regards.
How can I see the default typography of this menu?
Hello,
You can check the default font family from Theme Settings >> Typography >> https://ibb.co/9MPfx4B
Best Regards.