Posts: 457
Name: Randy
Location: Northern Wisconsin
|
I wasn't sure the clear would do anything, just thought you should remove it.
Do you realize you have the footer 10 pixels from the top?
#footer {
clear:both;
position:absolute;
left:35px;
width:961px;
height:89px;
top:10px; /* this is from the top of the browser window - set it to around 700 px */
}
You should try to not use so much absolute positioning, there could be a nice flow with this site easily. If your content were to grow, you'd have to keep moving that footer down. Practice.
Also, use firefox firebug to work through these problems, I was able to test your site quickly in that.
http://getfirebug.com/
Last edited by racer x; 07-27-2009 at 01:29 AM..
|