Forums

The forums ran from 2008-2020 and are now closed and viewable here as an archive.

Home Forums CSS Center submenu under main nav Reply To: Center submenu under main nav

#160241
Paulie_D
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.