Hello
For this need to required customization in template file for update menu width and also change css for this.
Perform below steps
1. http://prntscr.com/gbwz96
2. Add below css in Additional call
ul.nav-menu {
margin-bottom: 0;
text-align: center;
width: 100%;
}
ul.nav-menu li {
display: inline-block;
float: none;
position: relative;
}
You might be get height issue in menu, you need to handle this.
Thank you
Looks like that did the trick, now looks perfectly centered. Thanks!
This change caused my hover effect removal to give a slight unintended shift on mouse over for the top menu. I was using the following to keep the color change, but remove the effect:
/*hover effect removal*/
.link-effect a span {
transition: none !important;
}
-
This reply was modified 8 years, 10 months ago by
bofslime.
Hello
Please check below option for remove effect and it solve your issue shift left
http://prntscr.com/gd8fir
Thank you