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.