I've just gotten into messing around with CSS, trying to change up the look of a blog at Wordpress. And I've run into something I just can't figure out.
http://hendersonbromsteadart.wordpress.com/
I want the menu under the header to be justified, with "HOME" to the left, "TRY US HERE" to the right, and the other links evenly spaced between the 2.
What I have in there so far is:
- - - - - - - - - - - - - - - - -
#nav {
width:910px;
border-top:1px solid #222;
border-bottom:1px solid #222;
float:left;
overflow:hidden;
clear:both;
position:absolute;
top:230px;
}
#nav ul {
list-style:none;
display:table;
margin:0 auto;
}
#nav li {
display:inline;
}
#nav li a,#nav li a:visited {
display:block;
height:2.5em;
line-height:2.5em;
color:#999;
text-decoration:none;
font-size:1.2em;
text-transform:uppercase;
letter-spacing:.3em;
cursor  ointer;
padding:0 em;
}
#nav li a:hover {
color:#b08b04;
background:#fff;
text-decoration:none;
}
#nav li.current_page_item a:link,#nav li.current_page_item a:visited {
background:#fff;
color:#b08b04;
cursor:default;
}
- - - - - - - - - - - - - - - - -
Can anyone help me out with that I need to change up to get this to work?
Thanks
Kris
|