Remove Slideshow button?

brandofamilybrandofamily Registered Users Posts: 2,013 Major grins
edited August 6, 2013 in SmugMug Customization
How can I remove the slide show button in my NEW SM galleries?

Comments

  • aschendelaschendel Registered Users Posts: 283 Major grins
    edited July 31, 2013
    to get them all to go away, add this to your theme's CSS:

    .sm-gallery-slideshow-button
    {
    display: none;
    }
  • brandofamilybrandofamily Registered Users Posts: 2,013 Major grins
    edited July 31, 2013
    aschendel wrote: »
    to get them all to go away, add this to your theme's CSS:

    .sm-gallery-slideshow-button
    {
    display: none;
    }

    Thanks!

    Have the div names stayed the same as the "old SM" or have they all changed?
  • aschendelaschendel Registered Users Posts: 283 Major grins
    edited July 31, 2013
    I'm guessing they all changed... I wasn't too familiar with the old platform though, just hacked at it for a couple of weeks until I got my pretty simple site tidy enough.

    a.s.
  • brandofamilybrandofamily Registered Users Posts: 2,013 Major grins
    edited July 31, 2013
    aschendel wrote: »
    I'm guessing they all changed... I wasn't too familiar with the old platform though, just hacked at it for a couple of weeks until I got my pretty simple site tidy enough.

    a.s.

    How did you figure out this one?
  • aschendelaschendel Registered Users Posts: 283 Major grins
    edited July 31, 2013
    How did you figure out this one?

    A combination of View | Page Source and Firefox's most awesome Web Developer Toolbar - that's an indispensable plugin for reverse-engineering web pages. In the interest of full-disclosure (but not to at all intimidate anyone from trying to learn anything about this stuff) I am a computer programmer / web developer during the day.

    a.s.
  • printergirlprintergirl Registered Users Posts: 308 Major grins
    edited August 5, 2013
    Thanks for the CSS. I was hoping that getting rid of the slideshow button (which in an of itself I didn't mind), would make the gallery description fill the whole area, but it just leaves a blank area there now. Anyone know how to combat this?

    St.%20Augustine%2C%20Florida%20-%20Nora%20Kramer%20Photography.png
    ~ Nora

    WebsiteBlogFacebookTwitter
  • AllenAllen Registered Users Posts: 10,007 Major grins
    edited August 5, 2013
    Thanks for the CSS. I was hoping that getting rid of the slideshow button (which in an of itself I didn't mind), would make the gallery description fill the whole area, but it just leaves a blank area there now. Anyone know how to combat this?
    I added this CSS to "just this gallery" and it worked for me. But I had to move the slideshow and cart buttons out of the way.
    .sm-gallery-description {
      width: 100%;
      margin: 0 auto !important;
    }
    
    Al - Just a volunteer here having fun
    My Website index | My Blog
  • bobpalbobpal Registered Users Posts: 47 Big grins
    edited August 6, 2013
    The slideshow settings give you the option of removing the buttons. Just click on the wrench icon of the slideshow. No hacking necessary.
  • PhotoDavid78PhotoDavid78 Registered Users Posts: 939 Major grins
    edited August 6, 2013
    so how would i remove the slideshow button for just one gallery?
    David Weiss | Canon 5D Mark III | FujiFilm XT-4 | iPhone
    My Website
    Facebook | Twitter | | VSCOgrid | Instagram |
  • AllenAllen Registered Users Posts: 10,007 Major grins
    edited August 6, 2013
    so how would i remove the slideshow button for just one gallery?
    Add this to "just this gallery" CSS box.
    .sm-gallery-slideshow-button {
      display: none;
    }
    
    Al - Just a volunteer here having fun
    My Website index | My Blog
  • PhotoDavid78PhotoDavid78 Registered Users Posts: 939 Major grins
    edited August 6, 2013
    Allen wrote: »
    Add this to "just this gallery" CSS box.
    .sm-gallery-slideshow-button {
      display: none;
    }
    

    thanks allen. good to see you working on the new stuff!
    David Weiss | Canon 5D Mark III | FujiFilm XT-4 | iPhone
    My Website
    Facebook | Twitter | | VSCOgrid | Instagram |
Sign In or Register to comment.