Change header fonts and categories name
-
Hi, i want navigation header fonts in small letters and want to change the name of “Browse Categories” to “Department”
Hello,
In order to set font-size, please navigate to Theme Settings > Typography.
If you want to rewrite “Browse Categories” you will need to upload a free plugin Loco Translate. You can find more detailed manual in this video tutorial: https://youtu.be/D3NsDdMzsls
Kind Regards
hi, i don’t want to change font size. I want to change fonts from capital letters to small letters in header navigation
And want to remove the browse categories icon on the left also
Hello,
In order to set capitalize letter for menu, use this CSS:
.woodmart-navigation .item-level-0>a {
text-transform: none;
}
If you need capitalize letters in Browse Categories as well, use this CSS:
.menu-opener .menu-open-label {
text-transform: none;
}
If you want to hide the icon in Browse Categories, use this CSS :
.menu-opener > .burger-icon {
display: none;
}
Best Regards
remove the blank space in browse categories
Attachments:
You must be
logged in to view attached files.
Hello,
Please add this code to custom CSS area in the Theme Settings in order to correct:
body .menu-opener {
min-width:auto;
}
Best Regards