Hi, if you look at my website, www.setientprod.com/index.php I have a rotation script inside of a table but it is resizing the background of the neighboring cells. It is positioned with relative not absolute but the script is resizing the background for some reason. Can some please help me with this?
Here is the code
Here is the code
Code:
<center> <TABLE WIDTH="1080" HEIGHT="100" CELLSPACING="0" CELLPADDING="0" BGCOLOR="#FF0000"> <TR> <!--//////BEGIN Rotate/Rotation Script, If anything is added to the Body, these positions MUST be adjusted! The floating quote generator will mess up if anything is removed or added...//////--> <TD> <div style="position:relative; width:100%; height:100%; right:30; top:95;"> <?PHP include ("rotate.php"); ?> </div> </TD> <!--//////END Rotate/Rotation Script//////--> <!--//////BEGIN SPACER//////--> <TD><img width="100" height="100" src="http://sentientprod.com/images/rotate13.png"></TD> <!--//////END SPACER//////--> <!--//////BEGIN RECENT VIDEOS PICTURE//////--> <TD><img width="100" height="100" src="http://sentientprod.com/images/rotate13.png"></TD> <!--//////END RECENT VIDEOS PICTURE//////--> <!--//////BEGIN VIDEOS EMBED CODE//////--> <TD> <?PHP include ("vplayer.php"); ?> </TD> <!--//////END VIDEOS EMBED CODE//////--> </TR></TABLE> <TABLE WIDTH="1080" CELLSPACING="0" CELLPADDING="0" BGCOLOR="#FF00FF"><TR> <!--//////BEGIN RECENT IMAGE//////--> <TD><img width="1080" height="250" src="http://sentientprod.com/images/rotate13.png"></TD> <!--//////END RECENT IMAGE//////--> </TR> <TR> <!--//////BEGIN NEWS TITLES//////--> <TD><img width="1080" height="60" src="http://sentientprod.com/images/rotate13.png"></TD> <!--//////END NEWS TITLES//////--> </TR> </TABLE> </center>
Comment