Code for Centred page which is 750 pixels wide
<div id="PageDiv" style="position:relative; min-height:100%; margin:auto; width:750px">
<img src="icon.gif" border=0 width=750 height=130 alt="item1" style="float:left"></div>
Code for Left aligned page which is 750 pixels wide
<div id="PageDiv" style="position:left; min-height:100%; width:750px">
<img src="icon.gif" border=0 width=750 height=130 alt="item1" style="float:left"></div>
Code for Right aligned page which is 750 pixels wide
<div id="PageDiv" style="position:right; min-height:100%; margin-left:auto; margin-right:0px; width:750px">
<img src="icon.gif" border=0 width=750 height=130 alt="item1" style="float:left"></div>
|