Bullets center with unordered list

Logan picture Logan · Jul 1, 2011 · Viewed 25.3k times · Source

Does anyone know the CSS that makes the bullet point sit at the top of a multi-line bulleted list? For some reason with the template that I am using the bullet point centers to the left instead of simply sitting next to the first word if I have more than one line of text.

Answer

NGLN picture NGLN · Jul 2, 2011

Set the list style position to inside the list item, see this demo fiddle.

CSS:

ul {
    list-style-position: inside;
}