Thanks for the link.
I found the problem, but I can’t give you a quick fix yet. It appears you are using the Anything Slider plugin to display your slideshow.
You have a slideshow set up, but it doesn’t look like there are actually any images or “slides” to display.
The code for your slideshow, on the linked page, is:
<div class="slideshow" style="width:400px;height:300px">
<div class="wrapper" style="width:400px;height:325px">
<ul></ul>
</div>
</div>
You need some <li>*Insert Slides Here*</li>
in your unordered list (
<div class="slideshow" style="width:400px;height:300px">
<div class="wrapper" style="width:400px;height:325px">
<ul>
<li>*Insert Slide 1 Here*</li>
<li>*Insert Slide 2 Here*</li>
<li>*Insert Slide 3 Here*</li>
</ul>
</div>
</div>
The question is, are you hardcoding the slideshow, or using a plugin or shortcode to display it.
As far as I know, NextGen doesn’t support Anything Slider out of the box. How are you integrating the two?