This topic has 7 replies, 3 voices, and was last updated 8 years, 3 months ago ago by Robert Hall
How do I center the fixed navigation menu (The menu that drops down when you scroll)?
Also, is there a way to change the font of the fixed navigation menu (such as bold, size, or type of font?
Thanks.
Hello,
Try to use this code in Global Custom CSS section:
.fixed-header-area .menu > li {
float: none;
}
You can change menu items styles using this css code:
.fixed-header-area .menu > li > a {
font-size: 13px;
color: #000;
font-weight: bold;
font-family: open sans;
}
Write needed values.
Regards,
Eva Kemp.
Thanks.
When I used this code:
.fixed-header-area .menu > li {
float: none;
}
the menu breaks into 2 rows.
How can the menu be centered to the page, but all on the same row?
Hello,
Try to add this code in Global Custom CSS.
.fixed-header .menu-main-container{
text-align: center;
padding: 15px 0 0px;
}
.fixed-header .menu{
display: inline-block;
vertical-align: middle;
}
Regards,
Robert Hall
The fixed navigation menu has been moved more towards the center, but it is still not centered with the main menu.
Hello,
Please try this code in Global Custom CSS.
.fixed-header .menu-main-container{
text-align: center;
padding: 15px 0px 0px 50px;
}
.fixed-header .menu{
display: inline-block;
vertical-align: middle;
}
Regards,
Robert Hall
You must be logged in to reply to this topic.Log in/Sign up