Skip to content
WJunction - Webmaster Forum

How to Center Navbar using CSS

Status
Not open for further replies.
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.

About the author

A
Active Member · Joined
1,211
Messages
140
Reactions
63
Points

Advertise on WJunction

Reach 1000's of webmasters, hosts & affiliates. Banner & sponsored-thread slots available.

Contact us
Back
Top Bottom