On the about page the footer is causing horizontal scrolling...
http://stneotsfc.com/temp/www_eukhos...osting_php.jpg
Looking at the CSS I'm slightly surprised that so much position:absolute's are being used, as I think in some instances this may be causing the problems. For instance...
Code:
.footer {
position:absolute;
width:995px;
height:84px;
z-index:2;
left: 10px;
top: 1468px;
}
Personally when dealing with columns I tend to use...
HTML Code:
<div class="clearfix">
<div id="leftcol">
LEFT BLAH
</div>
<div id="maincol">
MAIN BLAH
</div>
</div>
...with the clearfix CSS code being...
Code:
.clearfix {height: 1%;}
.clearfix:after {content: "."; display: block; height: 0; clear: both; visibility: hidden; font-size:1px;}
html > body .clearfix {min-height: 1px; height: auto;}
...using the above format in theory would also reduce the amount of CSS required, as the top & left references would no longer be required, in addition to position.