Add Drop Shadow & Border to SmugMug Slideshow Gallery
This adds a drop shadow and a red 5px border around the slideshow. Add this to your theme’s CSS or add a CSS block on your ‘All Galleries’ section. Decrease the max-width
if you increase the border and/or shadow size.
CSS
/**
* Adds Border and Drop Shadow on Slideshow Landscape Gallery
*************************************************************/
.sm-user-ui .sm-gallery-slideshow .sm-tile-content {
border: 5px solid red;
max-width: 98%; /* Decrease width if you increase the border and/or shadow size */
box-shadow: 5px 5px 5px #151515;
}
/* Adds Border and Drop Shadow on Slideshow Landscape Gallery End */