PDA

View Full Version : Images won't load into slideshow- I'm completely out of ideas.



pauljamesw
20 Jun 2010, 09:58 PM
Hi, thanks for your time first of all-

secondly, I am at a loss for what to do next to get these slideshows functioning. You can see the current iteration here:http://www.pauljameswilliams.com/portfolio.html

I am using hte plug in galleria, and I have got it working in a stand alone version with the same images and and folder structure. The difference may be that I have the content nested in these div tags? to create tabs. i really don't know.

Here is the structure within the portfolio tab, under the Identity heading: ( there will be more images once I get this working:



<div>
<div class="demo">
<ul class="gallery_demo galleria">
<li><img src="images/portfolio01.jpg" alt="Flowing Rock" title="Flowing Rock Caption"></li>
<li><img src="images/portfolio02.jpg" alt="Stones" title="Stones - from Aple images"></li>
<li><img src="images/portfolio03.jpg" alt="Grass Blades" title="Apple nature desktop images"></li>
</ul>
<div class="galleria_container"></div>
<p class="nav"><a href="#" onclick="$.galleria.prev(); return false;">previous</a> | <a href="#" onclick="$.galleria.next(); return false;">next</a></p>
</div>
</div>


I can give you more code if necesary, but I don't want to overwhelm anyone. thanks.

michaelangrave
22 Jun 2010, 03:02 AM
Hi there,

Welcome to the forums. It seems that none of your scripts are linked correctly at the top of the page. The nested content shouldn't be a problem, but you will need to ensure that the following links are fixed.



<script type="text/javascript" src="Scrripts/jquery.tools.min.js"></script>
<script type="text/javascript" src="Sipts/jquery-1.4.2.min.js"></script>
<script type="text/javascript"src="Sccripts/jquery.galleria.pack.js"></script>


I would imagine you need to adjust to...



<script type="text/javascript" src="Scripts/jquery.tools.min.js"></script>
<script type="text/javascript" src="Scripts/jquery-1.4.2.min.js"></script>
<script type="text/javascript"src="Scripts/jquery.galleria.pack.js"></script>


Just for future reference, I would advise linking directly to Google's JQuery library as this will ensure that code is always up to date, and will load pretty fast too as it is on their server.

Hope this helps.