Blocking Thumbnails in Gallery

THOLTTHOLT Registered Users Posts: 10 Big grins
edited November 19, 2013 in SmugMug Support
I would like to totally eliminate the thumbnails in a gallery and just have the image and associated buttons. Using the following I was able to hide the thumbnails:

.sm-tiles-grid
{
display:none;
}

However, the image and associated button are to the far left and the two large arrows that surround the thumbnails in the original configurations are still viewable. I would like to hide the big arrows and center the image. Any ideas?

Thanks

Comments

  • JtringJtring Registered Users Posts: 678 Major grins
    edited November 19, 2013
    I'm just a hacker still working through the CSS books, but try this
    .yui3-u .sm-gallery-tiles-container {
      display:none;
    }
    .yui3-u .sm-gallery-image-container {
        position: absolute;
        left: 0;
        right: 0;
        margin: auto; }
    
    Folks who know more about CSS, feel free to suggest something better.

    Jim Ringland
    jtringl.smugmug.com
    Jim Ringland . . . . . jtringl.smugmug.com
  • THOLTTHOLT Registered Users Posts: 10 Big grins
    edited November 19, 2013
    Thanks. That worked perfectly!!
Sign In or Register to comment.