I'm having trouble getting the right image to show on my website. The left side of the image is fine, but I can't figure out how to make the right one appear.
As a HTML/CSS beginner, I'm still learning the basics.
For more information, visit http://bungle.ca/
<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;
}