views:

396

answers:

1

So I have a 3 unordered lists like so:

  <ul class="menu">
<li class="heading">Title (Click To Download)</li>
<li><a title="Download sample.mp3" href="http://example.com/sample.mp3"&gt;Sample Song</a></li>
</ul>

With the following css style:

/* SITE MAP MENUS */

ul.menu {

    float: left;
    margin: 0 10px 0 10px;
    display: block;
    font-size: 13px;
    line-height: 24px;
    color: #898989;
}


ul.menu li {}

.menuText
{

}
li.heading {
    color: #493f0b;
    font-weight: bold;
    border-bottom: 1px solid #d7d7d7;
}

However when I put a new div:

<div class="pleasedontfloat">The paganation would go here..</div>

Instead of going below the lists it goes next to them. How would I fix this? (the class pleasedontfloat has no rules applied to it)

+7  A: 
.pleasedontfloat { 
    clear:both;
}
jball
Just mark this one the answer.
tahdhaze09
Thanks a lot! One of these days I'll wrap my head around this voodoo known as css.
Chris T