Forums

The forums ran from 2008-2020 and are now closed and viewable here as an archive.

Home Forums CSS How to move the list style? Re: How to move the list style?

#80347
Rob MacKay
Participant

I would recommend using a CSS Reset…

http://meyerweb.com/eric/tools/css/reset/

But to sort out that issue you can do this:

Code:
ul, li {

margin:0;
padding:0;

}