PDA

View Full Version : Very Quick and Easy <UL> Question


Brandon
06-25-2002, 02:40 AM
I am making a list on a website, and I have it set up as:
<ul><li>blah1
<li>blah 2
<li>blah 3
<li>blah 4
<li>blah 5
<li>blah 6</ul>

Each time I put in <UL>, I get a big space above it(about the size of to <br>'s. How can I get rid of this? If I don't put the <UL> in, anytime the text after the <li> is too long for one line, it doesn't indent on the next line(and looks bad).

I know there has to be an easy CSS or HTML tag to add on this... I just don't know it/or can't think of it at the moment... thx guys

Nightfire
06-25-2002, 04:09 AM
<ul style="margin:0px">
<li>blah1</li>
<li>blah 2</li>
<li>blah 3</li>
<li>blah 4</li>
<li>blah 5</li>
<li>blah 6</li>
</ul>

Try that

glenngv
06-25-2002, 04:31 AM
try creating bulleted text with desired look in Word then save as html file. You will see the html code.

tamienne
06-25-2002, 05:56 PM
another way is to put it in a table.