Home › Forums › CSS › Center submenu under main nav › Reply To: Center submenu under main nav
January 13, 2014 at 5:48 am
#160241
Member
I think this will work.
Try adding this:
#main-nav ul {
width: 150%;
left: -25%;
}
The width figure is arbitrary, you just have to make it wide enough so that your submenu text fits inside each li
The left value pulls the submenu into the middle.