Web Hosting Talk







View Full Version : CSS div overflow help...


Xmop
08-17-2008, 05:58 PM
Hey.

I made a new theme for my blog today, and have a bit of an issue with the footer and the sidebar.

http://xmop.org/wp/about/

It's pretty much self-explanatory. The footer should be below the sidebar, not under it. So.. Any ideas?

foobic
08-17-2008, 06:59 PM
Add "clear: right;" (or "clear: both;") to your footer style.

larwilliams
08-17-2008, 07:03 PM
Change your footer class to the following:


.footer {
margin-top: 1px;
height: 25px;
text-align: center;
background: #3c3f41;
clear: both;
}

Xmop
08-17-2008, 11:32 PM
Hey,
Thanks for the replys, it works! :-)