Use a text only editor like Notepad. Find these lines in your page:
Code:
<div id="bv_Image9" style="overflow:hidden;position:absolute;left:4px;top:206px;z-index:0" align="left">
<img src="images/white.png" id="Image9" alt="" align="top" border="0" style="width:976px;height:1222px;"></div>
Change them to:
Code:
<div id="bv_Image9"></div>
Next, find this part:
Code:
<style type="text/css">
div#container
{
width: 983px;
position: relative;
margin-top: 0px;
margin-left: auto;
margin-right: auto;
text-align: left;
}
body
{
text-align: center;
margin: 0;
}
</style>
Make it like:
Code:
<style type="text/css">
div#container
{
width: 983px;
position: relative;
margin-top: 0px;
margin-left: auto;
margin-right: auto;
text-align: left;
}
body
{
text-align: center;
margin: 0;
}
#bv_Image9 {
width: 976px;
height: 1222px;
background-color: white;
position: absolute;
left: 4px;
top: 206px;
}
</style>
Save, and view it in the browser.
Bookmarks