Hi all,
I have another post about the basics of configuring the new X2 slideshowx module here: viewtopic.php?t=6012 however I am also worried about manipulating the demo html to operate within my PHP website. My pages work with a WYSIWIG EDITOR, so I can put HTML in the specific pages, but will I have to add code to the <HEAD> of the PHP template also, or will it all just go into the WSYWIG?
Here is the code of the demo index file:
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html>
<head>
<title>Imagevue Slideshow</title>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
<meta name="language" content="en" />
<meta name="description" content="" />
<meta name="keywords" content="" />
<script src="javascript/swfobject.js" type="text/javascript"></script>
<script type="text/javascript">
var flashvars = {
xml: "images.xml",
interval: 5,
showtext: true,
showcontrols: true,
controlstimeout: 1,
style: ".title { font-family: Candara, Arial; font-size: 18px; color: #FFFFFF; text-align:left;} .description { font-family: Candara, Arial; font-size: 12px; color: #CCCCCC; font-style: italic; text-align:right; } "
};
var params = {
menu: "false",
scale: "noScale",
bgcolor: "#FFFFFF"
};
swfobject.embedSWF("objects/imageview.swf", "altContent", "500", "280", "9.0.0", "objects/expressInstall.swf", flashvars, params);
</script>
<style type="text/css">
html, body { height:100%; }
body { margin:50px; }
</style>
</head>
<body>
<div id="altContent">
<h1>imageview</h1>
<p>Alternative content</p>
<p><a href="http://www.adobe.com/go/getflashplayer"><img
src="http://www.adobe.com/images/shared/down ... player.gif"
alt="Get Adobe Flash player" /></a></p>
</div>
</body>
</html>
New confused user, appreciate any assistance. Thanks!