How can I have a list of lists, with the top-level li's being inline, and the lower-level lists being normal lists?

Try floating the outermost lis: #box1 li, #box2 li, #box3 li { display:inline; font-size:24px; list-style:none; float: left; /* float the outer ones so they line up next to each other */ } /* snip */ #box1 li ul li { display:list-item; font-size:18px; list-style:none; border:none; float: none; /* don't float the inner ones */ } You'll need to add clear: both to #box2 to get things to line up, too.

Excellent, that solved my problem! Messes up the colored boxes a little bit but that wasn't really an issue, thank you! – ludicolo Sep 1 '10 at 20:39 No problem!

If you add a just before the closing tag of each div, it should smooth things out. – kevingessner Sep 1 '10 at 20:51.

I cant really gove you an answer,but what I can give you is a way to a solution, that is you have to find the anglde that you relate to or peaks your interest. A good paper is one that people get drawn into because it reaches them ln some way.As for me WW11 to me, I think of the holocaust and the effect it had on the survivors, their families and those who stood by and did nothing until it was too late.

Related Questions