emedia
04-23-2009, 04:35 PM
I am attempting to place an image and the JW Image Rotator together side by side. When I place them in a table, the image rotator works correctly and the image apprears but they do not display side by side.
Here is the website: http://69.20.105.86/servlet/parconew/StoreFront
I have included the code below:
<table cellpadding="5">
<tr>
<td>
<ss:image source="$templateSet.images['Specials.png']"
alt="PARCO Specials" border="0"/>
</td>
<td>
<!-- BEGIN -- JW Image Rotator. -->
<head>
<title><%=strTitle%>-<%=strDefaultPageName%></title>
<script type="text/javascript" src="http://69.20.105.86/stores/p/ParcoNew/jw_image_rotator/swfobject.js"></script>
<script type="text/javascript">
function createplayer(){var s1 = new SWFObject("http://69.20.105.86/stores/p/ParcoNew/jw_image_rotator/imagerotator.swf",
"rotator","275","125","2");
s1.addVariable("file","http://69.20.105.86/stores/p/ParcoNew/jw_image_rotator/playlist.xml");
s1.addVariable("transition","fade");
s1.addVariable("overstretch","fit");
s1.addVariable("backcolor","#A119DB");
s1.addVariable("width","580");
s1.addVariable("height","200");
s1.addVariable("repeat","true");
s1.addVariable("showicons","false");
s1.addVariable("shownavigation","false");
s1.addVariable("enablejs","true");
s1.write("placeholder");}
</script>
<meta name="KeyWords" content="<%=strMetaKeywords%>">
<meta name="description" content="<%=strMetaDescription%>">
<script language="JavaScript" type="text/JavaScript" src="scripts/scripts.js"></script>
<script language="JavaScript" type="text/JavaScript" src="scripts/anchorposition.js"></script>
<script language="JavaScript" type="text/JavaScript" src="scripts/topnav.js"></script>
<link rel="stylesheet" type="text/css" href="style.css">
<link REL="SHORTCUT ICON" href="/favicon.ico">
</head>
<body onload="createplayer()"
</body>
<!-- END -- JW Image Rotator. -->
</td>
</tr>
</table>
Here is the website: http://69.20.105.86/servlet/parconew/StoreFront
I have included the code below:
<table cellpadding="5">
<tr>
<td>
<ss:image source="$templateSet.images['Specials.png']"
alt="PARCO Specials" border="0"/>
</td>
<td>
<!-- BEGIN -- JW Image Rotator. -->
<head>
<title><%=strTitle%>-<%=strDefaultPageName%></title>
<script type="text/javascript" src="http://69.20.105.86/stores/p/ParcoNew/jw_image_rotator/swfobject.js"></script>
<script type="text/javascript">
function createplayer(){var s1 = new SWFObject("http://69.20.105.86/stores/p/ParcoNew/jw_image_rotator/imagerotator.swf",
"rotator","275","125","2");
s1.addVariable("file","http://69.20.105.86/stores/p/ParcoNew/jw_image_rotator/playlist.xml");
s1.addVariable("transition","fade");
s1.addVariable("overstretch","fit");
s1.addVariable("backcolor","#A119DB");
s1.addVariable("width","580");
s1.addVariable("height","200");
s1.addVariable("repeat","true");
s1.addVariable("showicons","false");
s1.addVariable("shownavigation","false");
s1.addVariable("enablejs","true");
s1.write("placeholder");}
</script>
<meta name="KeyWords" content="<%=strMetaKeywords%>">
<meta name="description" content="<%=strMetaDescription%>">
<script language="JavaScript" type="text/JavaScript" src="scripts/scripts.js"></script>
<script language="JavaScript" type="text/JavaScript" src="scripts/anchorposition.js"></script>
<script language="JavaScript" type="text/JavaScript" src="scripts/topnav.js"></script>
<link rel="stylesheet" type="text/css" href="style.css">
<link REL="SHORTCUT ICON" href="/favicon.ico">
</head>
<body onload="createplayer()"
</body>
<!-- END -- JW Image Rotator. -->
</td>
</tr>
</table>