As you can see from the code, I want one item to be floated to the right, while the rest are left in a link list. The float's are presumably working find, but no padding works on the left set of links. Thanks for your help.
HTML:
CSS:HTML Code:<ul id="footnav"> <li class="right">Alex Wedderien 2008</li> <li><a href="" title="">Work</a></li> <li><a href="" title="">Contact Me</a></li> <li><a href="" title="">Validation</a></li> </ul>
Code:#footer { height: 66px; width: 540px; border-top: 1px solid #efefef; padding: 10px 0; margin-right: 0px; margin-left: 0px; font-family: Georgia, Times, serif; color: #c9c9c9; font-size: 10px; font-weight: normal; font-variant: small-caps; } #footnav li { display: inline; list-style-type: none; margin: 0px; padding: 0px; } #footnav li a { text-decoration: none; padding: 0 15px 0 0; } #footnav li a:hover { color: #2f2f2f; border-bottom: 1px solid #2f2f2f; } #footnav .right { float: right; }



Reply With Quote

Bookmarks