Forums

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

Home Forums CSS Centered Nav Menu Re: Centered Nav Menu

#64932
Capt Otis
Member

Thats not exactly css though…

Set

Code:
body {
width=100%; }

Have another div inside the body that wraps around everything you want centered. Then give that wrapper

Code:
#nameofdivID{
margin:0 auto;
}

-T