It's my first inquiry in this group.

I use views_galleriffic in a website (subtheme of ZEN) and it works very well.
For only one page I need a simple slideshow on the left side (without thumbs). It should automatically start, when the page appears.

There are some modules, which do the job, but because I already have galleriffic avtivated, I try to use it for this task.

If it ist possible to use views_galleriffic in this way and, if yes, how?

Thank you for your help.

Albert

Comments

albert39’s picture

Issue summary: View changes
albert39’s picture

Issue summary: View changes
albert39’s picture

For the community: here is the solution.

views-galleriffic creates the box:

<div id="galleriffic" class="clearfix">
<div id="gallery" class="content">
<div id="thumbs" class="navigation galleriffic-processed" style="opacity: 1; display: block;">
</div>

For a certain page (e.g. node/27) you can suppress the display of the tumbnails with

#node-27 #galleriffic #thumbs {
  display: none !important;
    }

Albert