Changing height of menu items

After raising the height of my navbar, my text has still stayed at the top and was wondering if there was a way i could center the it without adding code to it. If code is the only way i can change it though, then i will add it. Also, is there any way I can change the height of my menu widget for mobile as well. Thank you.

Hi There,

Please navigate to Theme Options > Header > LINKS – ALIGNMENT > change NAVBAR TOP LINK ALIGNMENT (PX):

Hope it helps :slight_smile:

Oh wow, can’t believe I missed that. Thank you! Anything I can do for the mobile menu icon ?

Hello @devinnunn,

Thanks for updating the thread.

You can change the size of mobile menu icon from X > Theme Options > Header > Mobile Button > Mobile Navbar Button Size (px).

Thanks.

Awesome, but is there a way I can change the location of the button. Right now it is below my logo, but want to know if there is a way I can move it more upwards so that it’ll be above it or at least a little higher than where it is. Thanks, guys.

Hi,

You can reduce the size of your logo in mobile so your button doesn’t go below it.

To do that, you can add the code below in Theme Options > CSS

@media(max-width:767px) {
.x-navbar-inner {
    min-height: 70px;
}

.x-brand img {
    width: 250px;
}
}

Hope this helps

This topic was automatically closed 10 days after the last reply. New replies are no longer allowed.