tags:

views:

85

answers:

1

How can I remove spacing between the li found here?

http://blog.raveis.com/badge/b.html

Confused on how to do this and I don't want to use negative margins. any help would be greatly appreciated.

+2  A: 

Make your li tags display:block; and float:left; (instead of display:inline;)

Josh Stodola
I think `float: left` will do. Tested on that Url with Firebug
o.k.w
TY!!!!!!!!!!!!!!
HollerTrain
As a side note, I think `display:inline` could work if you remove all the whitespace between the `li` tags. But nobody wants to do that! This is cleaner.
Josh Stodola
You can remove whitespace by replacing it by HTML comments (like<!-- -->this if SO doesn't eat the comment between like and this)
Felipe Alsacreations