PDA

View Full Version : Slideshow (smugmug) buttons on


kevin2i
Jul-15-2007, 05:32 PM
(I've spent a few hours on this, hopefully there is an easy fix)

Easy to turn off the slideshow buttons, but I want the buttons showing for certain gallery pages. (The smug button - upper right corner).

(The first part is in comment because I need the slides show button 'on' for the following galleries. ) Category or specific gallery does not seem to work.

/* hides slideshow-feeds-keywords
.play_slideshow {
display: none;
}*/

.category_Kevin__Bill #play_slideshow {
display: on;
}
.gallery_Fireworks 2007 .play_slideshow{
display: on;
}

And this doesn't work turning them off for a specific gallery:

.gallery_Buy Sell Trade .play_slideshow{
display: none;
}
Pages:
Fireworks 2007 gallery: http://revolve.smugmug.com/gallery/3154840#173272016
Buy Sell Trade gallery: http://revolve.smugmug.com/gallery/2559869


*request -- put a 'show slideshow' toggle option on the gallery customization page (such as file names, camera info).*

richW
Jul-15-2007, 08:40 PM
.play_slideshow {display: none;} /* hides button site wide */

/* shows button in each gallery or category */

.category_photoshoots .play_slideshow {display: block;}

.category_Buy_Sell_Trade .play_slideshow {display: block;}

.gallery_2739703 .play_slideshow {display: block;}

Note the _ underscores in the category names. Adjust categories and gallery names as needed.