It's mainly because you are using tables for layout. That's a no-no. But in your page, easily fixed.
First open your page to edit and find this:
Make it look like this:
Code:
<body>
<div id=theWrap">
Than find this:
and make it look like this:
Next find this near the top:
Code:
<style type="text/css">
<!--
a:link {
Make it look like this:
Code:
<style type="text/css">
<!--
#theWrap {
width: 1000px;
margin-left: auto;
margin-right: auto;
}
a:link {
save, re-upload, refresh the page and see if that helps.
Bookmarks