Style BROWSE CATEGORIES menu
-
Hi,
is possible to change style of categories menu? I would like a rounded style for this “button”. Thank you!
Attachments:
You must be
logged in to view attached files.
Hello,
Try to add the following code snippet to the Custom CSS area in Theme Settings.
.menu-opener {
border-radius: 15px;
}
Regards
Works really good! Can I also add a rounded style for the “white space” of the menu? I mean, categories furniture, cooking, accessories… with a rounded style
Thank you again.
Attachments:
You must be
logged in to view attached files.
Do you mean to round each menu item or the whole element at once?
So for separate items or for the whole block? Please, show us on the screenshot how do you want to apply the rounded style.
Yes, I would like the whole block rounded. Thank you for reply! 🙂
Attachments:
You must be
logged in to view attached files.
Try to add the following code snippet to the Custom CSS area in Theme Settings.
.menu-categories-container > .menu {
border-radius: 20px;
}
.menu-categories-container > .menu > li:first-child > a {
border-radius: 20px 20px 0px 0px;
}
.menu-categories-container > .menu > li:last-child > a {
border-radius: 0px 0px 20px 20px;
}
Regards
Thank you! It works! 🙂 🙂
Great, you are welcome 🙂