Home Forums Basel support forum "Browse Categories" menu edit

"Browse Categories" menu edit

Viewing 5 posts - 1 through 5 (of 5 total)
  • Author
    Posts
  • #31953

    arturb111
    Participant

    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.
    #31962

    Artem Temos
    Keymaster

    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

    #31978

    arturb111
    Participant

    Thank you!
    For the side menu size, i mean the width of the menu, not the font size.

    #31993

    arturb111
    Participant

    Like here –
    https://demo.xtemos.com/basel/home-marketplace/

    How can i control the width of the Side menu “Browse Categories”?

    #32005

    Artem Temos
    Keymaster

    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;
    }
Viewing 5 posts - 1 through 5 (of 5 total)