CSS Image Gallery Support Product Page
This topic was archived
CSS Image Gallery Just lists images
Asked 23 Sep 2007 03:10:00
1
has this question
23 Sep 2007 03:10:00 Bryan Miller posted:
Okay, I have tried several things trying make the gallery not just list the pictures on the page, but actually work like it is supposed to. I have looked at the forums, download the manual, looked at the FAQ's and made adjustments using the information below and I still can't get it to work. The ScriptLibrary, Styles, gallery and source images are all on the server side. Even when I preview in Dreamweaver it doesn't work.Using:
Windows XP
Dreamweaver MX 2004
I have a page uploaded at the following place. Can someone offer any additional suggestions? Talk in laymans terms.
www.uccfs.org/CTBOPhotoRecap.htm
I have tried what you have listed below.
There could be several causes for this problem:
The JavaScript of your browser is disabled.
In order to view the Gallery make sure that your JavaScripts are enabled
The JavaScript and CSS files of the Gallery are not uploaded or the path to them is not correct
Check if the following files are uploaded to your server: jquery-latest.pack.js, jquery.dimensions.pack.js, jquery.mousewheel.pack.js, dmxgallery.js and dmxgallery.css
Also, check the paths in the following lines of your page:
<script src="ScriptLibrary/jquery-latest.pack.js" type="text/javascript"></script>
<script src="ScriptLibrary/jquery.dimensions.pack.js" type="text/javascript"></script>
<script src="ScriptLibrary/jquery.mousewheel.pack.js" type="text/javascript"></script>
<script src="ScriptLibrary/dmxgallery.js" type="text/javascript"></script>
<link href="styles/dmxgallery.css" rel="stylesheet" type="text/css" />
The Id of your gallery include spaces
For example, the name of your gallery is written like my css gallery. To fix it, it should be written like this:
mycssgallery or my_css_gallery
Replies
Replied 23 Sep 2007 11:51:46
23 Sep 2007 11:51:46 George Petrov replied:
Hi Bryan,
i see that you have fixed the id to not include any spaces:
<div class="dmxGallery" id="CreatedtoBeOneConferencePhotoGallery">
that is fine but you must fix also this line:
$("#Created to Be One Conference Photo Gallery"
.dmxGallery(
change it to:
$("#CreatedtoBeOneConferencePhotoGallery"
.dmxGallery(
we will fix the spaces problem in the next update so it is done automatically - sorry for the inconvenience.
Greetings,
George
--------------------------------------------------
George Petrov - Founder of the Dynamic Zones
DMXzone.com, FWzone.net, FLzone.net, CFzone.net,
DNzone.com, FlashFiles.nl
--------------------------------------------------
i see that you have fixed the id to not include any spaces:
<div class="dmxGallery" id="CreatedtoBeOneConferencePhotoGallery">
that is fine but you must fix also this line:
$("#Created to Be One Conference Photo Gallery"
change it to:
$("#CreatedtoBeOneConferencePhotoGallery"
we will fix the spaces problem in the next update so it is done automatically - sorry for the inconvenience.
Greetings,
George
--------------------------------------------------
George Petrov - Founder of the Dynamic Zones
DMXzone.com, FWzone.net, FLzone.net, CFzone.net,
DNzone.com, FlashFiles.nl
--------------------------------------------------
