That page is at least a little screwy in various ways.
Rather than go into that in depth, here's a quick fix. In the templates/st_morgn/css/template.css file, around line #28 we see:
Code:
#wrapper {
/* background: url("../images/bg-body.jpg") repeat-y center 0 #FFFFFF;
background: none;*/
margin: 20px auto;
text-align: left;
width: 960px;
overflow: hidden;
}
Make it like so:
Code:
#wrapper {
/* background: url("../images/bg-body.jpg") repeat-y center 0 #FFFFFF;
background: none;*/
margin: 0 auto 20px auto;
padding-top: 20px;
text-align: left;
width: 960px;
overflow: hidden;
}
That should preserve the layout, while fixing this issue. Both effects should be cross browser. Let me know if there are any problems/questions.
The browser cache may need to be cleared and/or the page refreshed to see changes.
Bookmarks