Not sure what the code would be to center all text in the navigation bar for my blog.
Any help with this code?
Not sure what the code would be to center all text in the navigation bar for my blog.
Any help with this code?
Add the text-align wording to your css so that it looks like this:
#navwrap{
display:block;
margin:0 auto;
width:700px;
text-align: center;
}
Tried that already and nothing centered.
Hmmm????
Add the same then to this:
#nav ul li a{
color:#888;
text-align: center;
}
It actually worked after I corrected it with this:
#nav ul{
list-style-type:none;
margin-center:-27px;
}
Thanks bmg1227
This topic has been closed to new replies.