Archived topic
Menu Plus height and logo
4 replies · Started by Damiaan van Vliet on March 28, 2016
Hi Tom,
Is it possible to change height of the sticky menu because I have a logo which has a 50px height.
And I wanted to change background color but I found it already with css and will post it also here:
.admin-bar .navigation-clone.navigation-stick {
background: white none repeat scroll 0 0;
}
Thanks!
Hi there,
You can do so with this:
.main-navigation.navigation-clone .main-nav ul li a {
line-height: 50px;
}
You'll also want to remove .admin-bar from your CSS above or it will only apply when you're logged in :)
Thanks Tom, working!
I also added for the logo to be larger than it showed because after uploading it looked very small:
.main-navigation .sticky-logo, .main-navigation .sticky-logo img {
height: 35px;
}
Oh and good tip about that admin-bar :-)
Awesome, glad it's working :)
