On your about_me.html page, you have many <dl> elements nested within each other, most of which have a 30pt left margin (I think it's their default margin-left value, I couldn't find the style affecting this). You could add as shown:
Code:
<STYLE TYPE="text/css">
<!--
TD P { color: #447b24 }
P { color: #447b24 }
TD P.style7 { color: #6781bc }
TD P.style6 { color: #ccf187 }
TH P { color: #447b24 }
A:link { color: #fd7e00 }
dl {
margin-left:0!important;
}
-->
</STYLE>
to your existing style section. But it would probably be better to reorganize the page so that it doesn't have so many nested <dl> elements on it.
Bookmarks