Define indent with lists?

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

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.


ul {margin-left:0px;padding-left:0px}

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.)

Hope this helps.

Paul