By looking at the code again, I'm guessing this line is what's creating that border on the right side of each list item, particularly what I've put in bold.
#nav ul li a {
display: block;
padding-right: 20px;
padding-left: 20px;
text-align: center;
color: #CCCCCC;
font-family: Verdana, Arial, Helvetica, sans-serif;
font-size: 12px;
line-height: 62px;
font-weight: normal;
background-image: url(/images/nav-border.jpg);
background-repeat: no-repeat;
background-position: right top;}
If so, you need to create a class that gets RID of the border and then apply it to the ONE list item you DON'T want to have a border on the right side, i.e.; the last one, by doing both of the following.
- Code: Select all
<li><a href="http://jspafford.com/archives.html" class="no_border">Archives</a></li>
#nav ul li a.no_border {
background-image: none;}