In your css file, get rid of the html markup.
(remove highlighted)
line 2
Code:
/* General Styles */
<style type="text/css">
body {
text-align:center;
font-family: arial, helvetica, sans-serif;
font-size: 80%;
color: black;
background-color: #000;
margin: 1em;
padding: 0;
}
lines 317 + 318
Code:
#footer_ {
position:absolute;
left:0px;
top:1196px;
width:1200px;
height:56px;
}
-->
</style>
Then find the following code:
Code:
#Table_01 {
position:absolute;
left:0px;
top:0px;
width:1200px;
height:1252px;
}
And change it to:
Code:
#Table_01 {
position:relative;
margin: -13px auto;
width:1200px;
height:1252px;
}
Bookmarks