views:

402

answers:

3

How do you keep numbered lists indented using HTML/CSS? I have a page where the digits are not indented and it does not look good.

Here is a sample page: http://php.wmsgroup.com/eofd6.org/volunteer.html

CSS is at: http://php.wmsgroup.com/eofd6.org/in.css

Thanks!

A: 

Here is a sample page: http://php.wmsgroup.com/eofd6.org/volunteer.html

CSS is at: http://php.wmsgroup.com/eofd6.org/in.css

Sorry about not being specific. This is a good forum, but I need to remember about posting details!

godleuf
I'm going to edit your question to include this info. When clarifying, it's best to put it all in the question so someone just arriving at the question has all the relevant information.
Chris Marasti-Georg
Note that if you can make a small example of the code and inline it in the question, that would be ideal - this way, if that link changes, you won't run into problems.
Chris Marasti-Georg
+4  A: 

With a CSS rule like this:

ol { margin-left: 30px; }

Here's some information about the CSS box model.

savetheclocktower
A: 

What about using:

li { list-style-position: outside; }
Mike Cornell