Topic: images not loading
Hello,
I know this topic has been posted many times before and I have looked at many of them but haven't been able to get a fix. I am trying to embed into dreamweaver. everthing shows up and works except the images. i have directed the galleryURL to the correct path but still no images. All I can get are the X's. I will post the gallery.xml file and the embed along with my html page to view it. Thanks for any and all help.
gallery.xml
<?xml version="1.0" encoding="UTF-8"?>
<simpleviewergallery
backgroundColor="000000"
frameColor="333333"
thumbPosition="RIGHT"
backgroundTransparent="false"
imageFrameStyle="ROUNDED"
showBigPlayButton="false"
thumbFrameColor="999999"
thumbFrameStyle="ROUNDED"
thumbNavHoverColor="333333"
thumbFrameHoverColor="CC0000"
showNavButtons="true"
showAutoPlayButton="true"
buttonBarBackColor="333333"
titleFontName="comic sans ms"
titleFontSize="21"
titlePosition="RIGHT"
autoPlayOnLoad="false"
showBackButton="true"
backButtonFontName="comic sans ms"
backButtonBackColor="333333"
backButtonFontSize="16"
useFlickr="false"
resizeOnImport="true"
cropToFit="false"
galleryHeight="600px"
frameWidth="5"
showOpenButton="false"
showFullscreenButton="false"
enableLooping="true"
imageTransitionType="CROSS_FADE"
thumbHoverFrameWidth="2"
doThumbPopOut="true"
showThumbVisited="false"
thumbNavPosition="BOTTOM"
showToolTips="false"
buttonBarHAlign="CENTER"
buttonBarPosition="TOP"
buttonBarVAlign="TOP"
buttonBarPadding="5"
buttonBarHoverColor="999999"
floatButtonBar="false"
captionPosition="BOTTOM"
floatCaption="false"
captionFontName="comic sans ms"
showImageNumber="false"
captionTextAlignment="CENTER"
indexPageName="c_shift_roster.html"
galleryWidth="600px"
backButtonX="500"
enableAPI="false"
imagePath="images/"
thumbPath="thumbs/"
>
<image imageURL="images/ditt_pic.gif"
thumbURL="thumbs/ditt_pic.gif"
linkURL="images/ditt_pic.gif"
linkTarget="_blank">
<caption><![CDATA[Captain Ken Dittemore]]></caption>
</image>
<image imageURL="images/westmoreland_pic.gif"
thumbURL="thumbs/westmoreland_pic.gif"
linkURL="images/westmoreland_pic.gif"
linkTarget="_blank">
<caption><![CDATA[Lieutenant James Westmoreland]]></caption>
</image>
<image imageURL="images/cook_pic.gif"
thumbURL="thumbs/cook_pic.gif"
linkURL="images/cook_pic.gif"
linkTarget="_blank">
<caption><![CDATA[Sergeant Tim Cook]]></caption>
</image>
<image imageURL="images/workman_pic.gif"
thumbURL="thumbs/workman_pic.gif"
linkURL="images/workman_pic.gif"
linkTarget="_blank">
<caption><![CDATA[Firefighter Daryl Workman]]></caption>
</image>
<image imageURL="images/files_pic.gif"
thumbURL="thumbs/files_pic.gif"
linkURL="images/files_pic.gif"
linkTarget="_blank">
<caption><![CDATA[Firefighter Lee Files]]></caption>
</image>
<image imageURL="images/majors_pic.gif"
thumbURL="thumbs/majors_pic.gif"
linkURL="images/majors_pic.gif"
linkTarget="_blank">
<caption><![CDATA[Firefighter Stuart Majors]]></caption>
</image>
<image imageURL="images/stafford_pic.gif"
thumbURL="thumbs/stafford_pic.gif"
linkURL="images/stafford_pic.gif"
linkTarget="_blank">
<caption><![CDATA[Firefighter Travis Stafford]]></caption>
</image>
</simpleviewergallery>
embed
<!--START SIMPLEVIEWER EMBED.-->
<script type="text/javascript" src="picture_viewer_files/c_shift_pics/svcore/js/simpleviewer.js"></script>
<script type="text/javascript">
var flashvars = {};
flashvars.galleryURL = "picture_viewer_files/c_shift_pics/gallery.xml";
jQuery(document).ready(function () {
SV.simpleviewer.load("sv-container", "600px", "600px", "000000", true, flashvars);});</script>
<div id="sv-container"></div>
<!-- END SIMPLEVIEWER EMBED -->