Hi Drupal-fans,

I added an imagefield to a content-type which allows me to upload several pictures.
Now it's looking like this:

Title
Image 1
Image 2

But I would like to let it look like this:

Title
Image 1 (as a link, clicking shows Lightbox-Slideshow of both/all images)

I couldn't come up with an idea on how to do this...

Any help is appreciated!

Comments

mm167’s picture

see if this is what u want ...http://www.drupalway.com/node/3

quotientix’s picture

That would be the perfect solution. What module is this?
The site doesn't give much information...

epicflux’s picture

If you're in Drupal 5 there's the Imagefield Gallery module.

If you only want to use the lightbox module: in the field display settings page for your content type choose to show the imagefield in the lightbox format.

Then in your style sheet hide all images but the first.

quotientix’s picture

I solved the problem using the jQuery Cycle plugin and adding the following code:

$('.field-field-project-image div').cycle('fade');