How can I stop float left?

A standard approach is to add a clearing div between the two floating block level elements:

<div style="clear:both;"></div>

Sometimes clear will not work. Use float: none as an override


You could modify .adm and add

.adm{
 clear:both;
}

That should make it move to a new line


add style="clear:both;" to the "adm" div.


Okay I just realized the answer is to remove the first float left from the first DIV. Don't know why I didn't see that before.