I need this because I want to make a menu (which is made from a HTML list) appear horizontally.

*I prefer not to use absolute positioning since it might become messy when I start changing the layout of the page.

Edition 01

I would like also to remove the indenting of the sub-lists, is it possible?

link|improve this question

feedback

4 Answers

up vote 2 down vote accepted

You will have to use something like below

#menu ul{
  list-style: none;
}

#menu li{
  display: inline;
}

and then

<div id="menu">
  <ul>
    <li>First menu item</li>
    <li>Second menu item</li>
    <li>Third menu item</li>
  </ul>
</div>
link|improve this answer
1  
please format code as code – Natrium Jan 27 '10 at 7:42
Will (display:inline;) remove the indenting for the sub-lists? – MAK Jan 27 '10 at 8:00
1  
No. For that, you want #menu li li{margin-left: 0; padding-left: 0;} – Paul D. Waite Jan 27 '10 at 8:04
Great, Everything seems perfect. Thanks everyone! – MAK Jan 27 '10 at 8:22
feedback

quite simple:

ul.yourlist li { float:left; }

or

ul.yourlist li { display:inline; }
link|improve this answer
feedback

See http://css.maxdesign.com.au/listamatic/, this will give you useful hints.

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.