On our website, when you make your browser smaller or use a smaller computer (13″ and below), the menu is no longer centered. I have the following CSS in place to center the menu and it works on my computer which is a 15″ laptop.
/* spacing below menu text */
.inner-page-wrap.no-top-spacing {
margin-top: -30px !important;
}
/* menu font size */
nav.std-menu .menu li {
font-size: 20px;}
/* menu position and padding */
#main-navigation > div {
margin-right: 100px;
padding-top: 20px;
}
/* menu li item right margin spacing – space between items */
nav#main-navigation .menu > li {
margin-right: 60px !important;
}