Home › Forums › CSS › Centered Nav Menu › Re: Centered Nav Menu
October 1, 2009 at 9:04 am
#64932
Member
Thats not exactly css though…
Set
Code:
body {
width=100%; }
width=100%; }
Have another div inside the body that wraps around everything you want centered. Then give that wrapper
Code:
#nameofdivID{
margin:0 auto;
}
margin:0 auto;
}
-T