Thread: Link Troubles
View Single Post
  #5 (permalink)  
Old Sep 30th, 2006, 00:56
Ryan Fait's Avatar
Ryan Fait Ryan Fait is offline
SuperMember

SuperMember
Join Date: May 2006
Location: Las Vegas
Posts: 3,786
Thanks: 0
Thanked 0 Times in 0 Posts
Re: Link Troubles

I'm assuming the non-breaking spaces were just to move the text over. In moojoo's code (which is what you should be using), you can add padding to do the same thing:

Code: Select all
.sidenav li {
    padding: 0 0 0 10px;
}
In case you're unfamiliar with shorthand, that's the same thing as:

Code: Select all
.sidenav li {
    padding-top: 0;
    padding-right: 0;
    padding-bottom: 0;
    padding-left: 10px;
}
The order for shorthand goes top right bottom left.
Reply With Quote