Bottom navigation menu
- The topic ‘Bottom navigation menu’ is closed to new replies.
Need help? Check out our Support site, then
Hi Thomas,
I need your help. I try to put my menu in center (text-align) but I can’t…
Is there sth I’ve entered in CSS that stopes it?
I’m trying the following:
.main-navigation-menu {
text-align: center;
}
but nothing happens…
Thank you,
Chris
The blog I need help with is: (visible only to logged in users)
Hi Chris,
The navigation menu is not a simple text paragraph, therefore text-align won’t work here.
You can use this short CSS snippet to center the main navigation:
@media only screen and (min-width: 60em) {
.main-navigation-menu {
float: none;
display: flex;
flex-wrap: wrap;
justify-content: center;
}
}
Cheers,
Thomas