Hi,
Is it possible to center the menu items in the nav bar, as opposed to having them left justified?
Thanks,
A
Hi,
Is it possible to center the menu items in the nav bar, as opposed to having them left justified?
Thanks,
A
Hi A,
I hope you are well today and thank you for your question.
You can try achieving this by adding the following CSS code in the Custom CSS option of your theme on the below path.
Admin Area -> Appearance -> Customize -> Activello Options -> Other -> Custom CSS
@media (min-width: 768px){
.navbar.navbar-default .site-navigation-inner.col-sm-12 {
display: table;
margin: 0 auto;
width: auto;
float: none;
}
}
Best Regards,
Movin
worked like a treat!
thanks!
You are most welcome here