Using the IE developer toolbar, I set the margin of the page in the iframe to 0. That took care of it. You have some errors on that page as well that should be avoided. The one that jumped out at me is:
Code:
<style type="text/css">
img {
border-width: 1px;
border-color: #cccccc;
border-style: solid;
}
<style type="text/css">
<style type="text/css">
h1 {font-size: 100%}
h2 {font-size: 110%}
p {font-size: 80%}
</style>
You cannot open another style block inside of an already opened style block.
So, avoiding something like that, make a new style block:
Code:
<style type="text/css">
body {
margin:0;
}
</style>
in the head of the page.
If you want the page to have a margin, you can use a container division:
Code:
<BODY BGCOLOR="#FFFFFF" TEXT="#000000" LINK="#808080" VLINK="#808080" ALINK="#FF0000">
<div style="margin:11px;">
The rest of the stuff from inside the body can go here
</div>
</BODY>
</HTML>
Bookmarks