positioning list numbers with a CSS or theme

A

averbunt

I want to place the numebers of a numbered list at the left text margin
instead of a certain distance from the left-margin (standard). But if I
change the paragraph values the numbers end up left of the left margin. Also
I want it the same way for the whole website by changing the the CSS or theme
of the site. I can't find the right variable/tag. PLease help?
 
M

Murray

Consider this code -

<style type="text/css">
<!--
ul {
margin-left: 0px;
}
-->
</style>
</head>

<body>
<ul>
<li>Item 1</li>
<li>Item 2</li>
<li>Item 3</li>
</ul>
<p>&nbsp; </p>
</body>
</html>

(by the way, I said to set the margin on <li> and I should have said to set
it on <ul>)
 
Top