How to Center Navbar using CSS

Status
Not open for further replies.

AJ Blacklisted

Active Member
1,211
2011
140
10
Well,
I am designing a custom porfolio page for myself...
I am messing with CSS now. i dunno how to make the navbar centered :facepalm:

Here is my code with navbar
Code:
#menu{
margin: 0 auto;
text-align:center;
float:left;
position:relative;
left:50%;

}
#menu li{
display:inline;
list-style-type:none;
}

My page : http://devilarts.info/portfolio/

Any help ?
 
4 comments
Just delete:
float:left;
position:relative;
text-align:center;
left:50%;

And Add these lines for #menu:
width:401px;
height:32px;
 
Status
Not open for further replies.
Back
Top