How do I define the indent spacing for listings?
I don't want my lists to indent as far as they do.
Thanks in advance
| SitePoint Sponsor |


How do I define the indent spacing for listings?
I don't want my lists to indent as far as they do.
Thanks in advance
Get to know the man behind the screen


Hi,
I think IE using margin for its default indent and Mozilla uses padding. So setting padding and margin to zero should make them start off in the same place.
This will make the list display against the left edge with no room for the bullet. You can then set a suitable margin-left for the indent you need. (You may need a bit of trial and error here.)Code:ul {margin-left:0px;padding-left:0px}
Hope this helps.
Paul
Bookmarks