View Single Post
  #2 (permalink)  
Old May 11th, 2007, 22:39
Lchad Lchad is offline
SuperMember

SuperMember
Join Date: Sep 2006
Location: Pink House
Posts: 3,946
Thanks: 0
Thanked 0 Times in 0 Posts
Re: CSS #frame height and PHP

Try either of these fixes and see if it works.

To the css footer add
Code: Select all
clear: both;
or if that doesn't work... right above the footer code in the html add this
Code: Select all
<div class"clear"></div>
then add this to your css
Code: Select all
.clear {
	height:1px;
	margin:0 0 -1px 0;
	clear:both;
	overflow:hidden;
}
Reply With Quote