Formatting for bulleted list

I have this code:

<ul>
    <li><a href="http://a">Dave's membership sites</a></li>
    <li><a href="http://a">Competitive Intelligence Secrets</a></li>
    <li><a href="http://a">Get it Done Now!</a></li>
</ul>

When I have a line of text there that wraps to the next line, the wrap starting position is at the beginning of the line, rather than the beginning of the indented text.

How can I get the wrapped line to start aligned to the text line above it?

Thanks,

Jon

By default, lists display the way you want, so you probably have a CSS rule that changes this. Anyhow, what you need is basically this:

ul {list-style-position: outside}

You were right. I found that it was copy and pasted text that had a bullet. So the code had no ul in it! The html I gave above was from another section. Sorted now thanks.