on your header.php, you need to close your favicon declaration..
<LINK REL="SHORTCUT ICON" HREF="http://www.fatburningreviews.com/wp-content/themes/jpeg/favicon.ico">
If that doesn’t do it I am at a loss too- but this is what I have done:
add to your wrapper div margin-top:-25px; and that will clear it up until you find the culprit..
I can’t help but think that favicon being unclosed is causing it though..
huh—-
find:
body {
background-color: #004D99;
font-size: 12px;
color: #111111;
font-family: Arial, Helvetica, sans-serif;
}
#wrapper {
width:920px;
margin: 0 auto;
}
replace with:
body {
background-color: #004D99;
font-size: 12px;
color: #111111;
font-family: Arial, Helvetica, sans-serif;
width:920px;
margin: 0 auto;
}
#wrapper {
position: absolute;
center:0px;
top:0px;
width:920px;
}
Awesome!! Worked like a charm!
Thank you, thank you!