This is probably a dumb question but can’t find an answer with google. Left side of the image shows up fine, can’t for the life of me get the right image to show.
HTML/CSS Newb, just learning the basics.
http://bungle.ca/
http://bungle.ca/images/
<ul id="nav">
<li><a href="#">Link One</a></li>
<li><a href="#">Link Two</a></li>
<li><a href="#">Link Three</a></li>
<li><a href="#">Link Four</a></li>
<li><a href="#">Link Five</a></li>
<li><a href="#">Link Six</a></li>
</ul>
#nav{
min-width: 1024px;
height: 30px;
padding: 0px;
margin: 0px;
color: #eeeeee;
white-space: nowrap;
list-style-type: none;
}
#nav li{
display: inline;
background: url('../images/tabRight.png') no-repeat right top;
}
#nav li a{
padding: .2em 1em;
height: 30px;
width: 100px;
text-decoration: none;
float: left;
text-align: center;
background: url('../images/tabLeft.png') no-repeat left top;
}
just add
display:inline-block;to #nav li