Help with spacing

Peachhunter12

New Member
Hello I am in need of help on a certain issue here. I am trying to get my links to have no highlight-able spaces between them. How do I do this? Here is a picture.
 

Attachments

  • Untitled.jpg
    Untitled.jpg
    7 KB · Views: 15

DHDdirect

New Member
Using CSS you can set a left and right margin on the list

Such as:
Code:
li {
  margin:0px 10px;
}

Of course you'll need to be using a list in this instance.
 
Top