Forums

The forums ran from 2008-2020 and are now closed and viewable here as an archive.

Home Forums CSS ok, last help needed for this issue Re: ok, last help needed for this issue

#114689
JohnMotylJr
Participant

@cm123077 : If you are floating content around an image, than you need to clear the content underneath, not the div itself. Like TheDoc had mentioned you need to add class='clearfix' to the elements that are underneath the floating elements.

.clearfix {
clear:both;
}