View Single Post
Old 10-06-2012, 07:27 AM   PM User | #3
fireplace_tea
New Coder

 
Join Date: Sep 2012
Location: Boulder, CO
Posts: 56
Thanks: 5
Thanked 0 Times in 0 Posts
fireplace_tea is an unknown quantity at this point
Instead of floating right, float them left. Here is the coding:

Code:
.navbar ul li{
display:inline-block;
margin-left:10px;
margin-right:10px;
background-image:url(button.png);
background-repeat:no-repeat;
height:40px;
width:100px;
text-align:center;
padding-top:10px;
float:left;
text-decoration:none;
list-style:none;
}
Notice, I changed float:right to float: left and that fixed it.
fireplace_tea is offline   Reply With Quote