PDA

View Full Version : How do I remove "slideshow" toolbox?


Green Fleurdelis
Mar-31-2007, 09:34 PM
In this thread (http://www.dgrin.com/showthread.php?t=26359), Andy gave instructions for removing the "slideshow" toolbox from a particular gallery.

How would I do this for all galleries?

I tried putting .toolsbox {display: none;} in my CSS, but that didn't do the trick.

My site is http://www.bakkers.smugmug.com/

Thanks,
Gary

Allen
Mar-31-2007, 09:39 PM
In this thread (http://www.dgrin.com/showthread.php?t=26359), Andy gave instructions for removing the "slideshow" toolbox from a particular gallery.

How would I do this for all galleries?

I tried putting .toolsbox {display: none;} in my CSS, but that didn't do the trick.

My site is http://www.bakkers.smugmug.com/

Thanks,
Gary Are you talking about the slideshow style page or the full screen slideshow?
I couldn't find any galleries set to slideshow style, do you have links to them?
I changed the style for a couple of your galleries to slideshow and the toolbar
was not there, isn't that what your want?

Green Fleurdelis
Apr-01-2007, 09:14 AM
Sorry Allen. I wasn't very clear was I?

As background info, I want all of my galleries except one to be SmugMug style. I know that I can force that via the customize function for each gallery. (Is there a way to do this with one command?)

Anyway, in the SmugMug style, there is a little box near the upper right that says "slideshow". I'd like to remove that box from my galleries.

That's all.

Allen
Apr-01-2007, 09:27 AM
Sorry Allen. I wasn't very clear was I?

As background info, I want all of my galleries except one to be SmugMug style. I know that I can force that via the customize function for each gallery. (Is there a way to do this with one command?)

Anyway, in the SmugMug style, there is a little box near the upper right that says "slideshow". I'd like to remove that box from my galleries.

That's all.
Get SmugBrowser, you can set the style at any level and flow down into
galleries. Then manually change to one to slideshow.

That sounds like the "fullscreen" slideshow button.
Add this to you CSS

.play_slideshow {display:none;}

Green Fleurdelis
Apr-01-2007, 10:45 AM
Get SmugBrowser, you can set the style at any level and flow down into
galleries. Then manually change to one to slideshow.I had never heard of SmugBrowser before. That saved a lot of time.

That sounds like the "fullscreen" slideshow button.
Add this to you CSS

.play_slideshow {display:none;}Yep. That worked.

Excellent advice as usual. Thanks.

R. Scott
Apr-03-2007, 09:11 AM
Al,

If you have a minute will you take a look at my code? I've inserted the line to disable the fullscreen button but it still shows up.

Thanks,

Scott
www.rscottschmid.com (http://www.rscottschmid.com)

Allen
Apr-03-2007, 03:13 PM
Al,

If you have a minute will you take a look at my code? I've inserted the line to disable the fullscreen button but it still shows up.

Thanks,

Scott
www.rscottschmid.com (http://www.rscottschmid.com)
I don't see the fullscreen anywhere.:scratch Looks like you got it solved.

R. Scott
Apr-04-2007, 09:02 AM
I don't see the fullscreen anywhere.:scratch Looks like you got it solved.

Allen,

Thanks for looking. I still see it, though, on two different PC's. Maybe we're talking about two different things. In the slideshow view, I'm seeing a fullscreen button at the right end of the option bar next to the small/medium/large dropdown box. You're not seeing that?

Thanks again for your help.

Andy
Apr-04-2007, 09:06 AM
Allen,

Thanks for looking. I still see it, though, on two different PC's. Maybe we're talking about two different things. In the slideshow view, I'm seeing a fullscreen button at the right end of the option bar next to the small/medium/large dropdown box. You're not seeing that?

Thanks again for your help.

add this:

.buttons[value=fullscreen] {display:none;}

doesn't work for IE6 though, IIRC

Allen
Apr-04-2007, 09:09 AM
Allen,

Thanks for looking. I still see it, though, on two different PC's. Maybe we're talking about two different things. In the slideshow view, I'm seeing a fullscreen button at the right end of the option bar next to the small/medium/large dropdown box. You're not seeing that?

Thanks again for your help.
See if this gets what you want.

#slideshow .buttons.fullscreen
{display: none;}

R. Scott
Apr-04-2007, 11:50 AM
See if this gets what you want.

#slideshow .buttons.fullscreen
{display: none;}

Bingo! Allen's fix worked.

Thanks for the attention Andy and Allen.