I've installed a theme on http://www.sqsaparade.com and customized it by widening the posting space so it would span from side to side. It's worked great on every page, except the homepage. There is a blank white space at the top. How do I fix this. Thank you!
home page:
html:
<div class="postareaindex">
css:
.postareaindex { float:left; margin:0 auto 0 180px; padding:10px; }
if you replace the left margin value 180px with 0px, it should work.
just for comparison:
other pages:
html:
<div class="postarea">
css:
.postarea { width:500px; margin:0 auto; padding:10px; float:left; }
Thank you very much. That did the trick.