views:

33

answers:

2

I had set up Galleria Plugin successfully. But the problem is that the thumbnails for each picture is not generating. My Code is below

<div id="galleria">
        <img title="Image title" src="images/1.jpg">
        <img title="Image title" src="images/2.jpg">
        <img title="Image title" src="images/3.jpg">
        <img title="Image title" src="images/4.jpg">
        <img title="Image title" src="images/5.jpg">
        <img title="Image title" src="images/6.jpg">
        <img title="Image title" src="images/7.jpg">
        <img title="Image title" src="images/8.jpg">
        <img title="Image title" src="images/9.jpg">
        <img title="Image title" src="images/10.jpg">
</div>

JQUERY

<script>
     Galleria.loadTheme('js/galleria.classic.js');
     $('#galleria').galleria();
</script>

Plz help. Any help will be appreciated.

A: 

Never used the script, but what i advise is:

  • check your jQuery framework file path
  • check your image paths, try using exact paths not relative
  • set script tag with type="text/javascript" attribute

Good luck

Zlatev
A: 

Actually, i changed the display:none for the slideshow window to visibility:hidden and its working!. thanks for all who answered

Rajasekar