In my case the slideshow is running as a block within the banner region. I am using the following code for the slideshow:

Only local images are allowed.
Only local images are allowed.
Only local images are allowed.

Regarding the dots, the slider always wants to show 5 images. Is this a bug or a feature?

CommentFileSizeAuthor
#6 nivo_slide_1.jpg95.57 KBpwhiteside
Support from Acquia helps fund testing for Drupal Acquia logo

Comments

Drupi’s picture

Having the same issue

timdavison’s picture

From what I can see the number of dots is not the same as the number of images. The Andromeda demo has two images and 3 dots. I've used 3 images which shows 5 dots, and 4 images which shows 7 dots.

So dots = (2 x images) - 1

I assume it should be just one dot per image.

(tested on Chrome)

gear3D’s picture

Category: support » bug

+1 same issue.

The theme is fantastic, by the way and my first attempt at using Drupal. My main choice for this theme was the Nivo Slider integration.

ndmckay’s picture

+1... It seems that the slider is doubling up on 'dots' for all images (regardless of number) apart from the last.

I've tried overwriting the nivo slider with the latest download from their site, but it doesn't fix it.

EDIT -- Ok, the issue is due to the slider script parsing line breaks in the HTML you enter for the block as images themselves! Hence if you 'pretty print' your HTML, you are going to have an extra image dot/block for each image bar the last.

TEMPORARY FIX -- Simply enter all your HTML (i.e. the div id='slider' and subsequent IMG tags) on ONE LINE.

Thanks for the awesome theme :)

N.

gear3D’s picture

Champion.

Thanks for the temp fix N.

pwhiteside’s picture

FileSize
95.57 KB

I've done what #4 ndmckay says but only get 2 out of 3. Anybody know anything that could help?

UPDATE: I had dodgy code, never actually read it properly. Cleaned it up and it works perfectly now. :D

Thanks, the Whiteside of life.

yshido’s picture

Status: Active » Reviewed & tested by the community

#4 fix:
worked fine. ty

Selles’s picture

Hello

I am new in drupal and i m having some problems with the slideshow.
Even if i get the same number of images/dots these are not linked to the relative image
and some times some image jump and never appear

<div id="slider">
<img src="/drupal/sites/all/themes/andromeda/images/sunset.jpg"/>
<img src="/drupal/sites/all/themes/andromeda/images/2.jpg"/>
<img src="/drupal/sites/all/themes/andromeda/images/beach.jpg"/>
<img src="/drupal/sites/all/themes/andromeda/images/jaime.jpg"/>
</div>

This is my code what's wrong?
To write in separate line i m using php filter and it seem to work better than full html.

thank's a lot

bye

dawick’s picture

Try this as paths should be relative to drupal root:

<div id="slider">
<img src="/sites/all/themes/andromeda/images/sunset.jpg"/>
<img src="/sites/all/themes/andromeda/images/2.jpg"/>
<img src="/sites/all/themes/andromeda/images/beach.jpg"/>
<img src="/sites/all/themes/andromeda/images/jaime.jpg"/>
</div>
Selles’s picture

Yes and they are ok.Every immages is displayed.
But not correctly as i sed before.

Selles’s picture

I've solved the problem of 5 images but now there's another problem.
Each dot is not connected to the relative image and became darker asynchronously respect the image shown.
Do you know how to solve this??

shadcn’s picture

Have a look at the andromeda 7.x-2.x. It fixes the slideshow problems in 1.

shadcn’s picture

Status: Reviewed & tested by the community » Fixed

Status: Fixed » Closed (fixed)

Automatically closed -- issue fixed for 2 weeks with no activity.