Latest Lists

help with html code...?

I have a bullet list and a numbered list. However they dont exactly line up together on the page. For instance: 1 2 3 . . . how can I get them exactly enligned. I need the html code to do this. Thanks!

Public Comments

  1. 1<br> 2<br> 3 <br> basically means move to the next line *best answer
  2. Those numbers and bullets are aligned. What is it you are actually trying to do ? Post code
  3. Use css. ol,ul,li { margin:0;} ol,ul{ padding:0; } li{ padding-left:1em; } ...then you may have to experiment in your case (depending on other things in your layout, with either ol li { list-style-position:inside; } or ul li{ list-style-position:inside; } or ol li{ padding-left:1.1em; } or ul li { padding-left:1.1em; } ...and like that (You know of course that all this could be placed in the < head > ... < /head > section between < style ... > </ style > or in an external style sheet linked by <link ... /> )
  4. One known secret, I don't believe is widely used, you can position anything on a web site exactly the way you want by using the following code. <PRE> 1. 2. 3. </PRE>
Powered by Yahoo! Answers