Simple one. How do I indent a list of line items? Here is the code: <li>information line example</li> <li>information line example</li> <li>information line example</li> <li>information line example</li> <li>information line example</li> Code (markup): When I just use this code the bullets for the line items back right up to the div section. I want them to be moved slightly to the right. Thanks in advance. J
In your CSS file, to make just the text move in, add the following li { padding-left: 10px; } Code (markup): to move the text and the bullets, add the following. li { margin-left: 10px; } Code (markup): Nick