"Browse Categories" menu edit
-
Hey there,
I have 2 requests for you –
1) How can i change the size + colors of the “Browse Categories” side menu?
2) How can i remove the black “title bar”? (Image attached)
Thanks alot!
Attachments:
You must be
logged in to view attached files.
Hello,
1. The color for this menu can be changed from Theme Settings -> Styles & Colors as a primary color. If you want to change the color specifically for this menu you can use the following CSS code
header.header-categories .secondary-header .mega-navigation {
background: #8c7557;
}
As for the size, add the following code snippet to the Custom CSS in Theme Settings
header.header-categories .menu-opener {
font-size: 20px;
}
2. Use the following code
.page-title-default {
display:none;
}
Regards
Thank you!
For the side menu size, i mean the width of the menu, not the font size.
Like here –
https://demo.xtemos.com/basel/home-marketplace/
How can i control the width of the Side menu “Browse Categories”?
On the demo page you sent the categories menu is added to the page a Visual Composer element. So it is not a part of your website header. But you can limit this categories menu width by adding the following snippet to the Custom CSS area in Theme Settings
header.header-categories .search-extended {
width:auto;
}
header.header-categories .secondary-header .mega-navigation {
width: 300px;
}