Options

Looking to add shadow to folder and gallery page thumbs

brandofamilybrandofamily Registered Users Posts: 2,013 Major grins
edited October 8, 2013 in SmugMug Customization
I tried this code to add a shadow to the folder/ gallery page thumbs... but it effects the thumbs in the SM gallery too... I don't want those shadowed as they are too close together... Can someome help to remove the shadows on the SM gallery thumbs but keep them for the folder/ gallery thumbs?
/*Shadow for Folder & Gallery Images*/
.sm-user-ui .sm-tiles .sm-tile-content {
  box-shadow:6px 6px 3px rgba(0,0,0,.3);
-webkit-box-shadow:6px 6px 3px rgba(0,0,0,.3);
-moz-box-shadow:6px 6px 3px  rgba(0,0,0,.3);
filter: progidXImageTransform.Microsoft.Shadow (Color='000000', direction='3', strength='3');
_filter: none;
}

Comments

  • Options
    AllenAllen Registered Users Posts: 10,012 Major grins
    edited October 6, 2013
    Can you use the :not in the CSS to exclude .sm-gallery-smugmug? This is the body style for smugmug style galleries.
    Al - Just a volunteer here having fun
    My Website index | My Blog
  • Options
    brandofamilybrandofamily Registered Users Posts: 2,013 Major grins
    edited October 6, 2013
    Allen wrote: »
    Can you use the :not in the CSS to exclude .sm-gallery-smugmug? This is the body style for smugmug style galleries.

    You lost me...ne_nau.gif
  • Options
    AllenAllen Registered Users Posts: 10,012 Major grins
    edited October 6, 2013
    You lost me...ne_nau.gif
    Worth a try. Not 100% sure correct though.

    .sm-user-ui .sm-tiles .sm-tile-content:not(.sm-gallery-smugmug) {...}
    Al - Just a volunteer here having fun
    My Website index | My Blog
  • Options
    brandofamilybrandofamily Registered Users Posts: 2,013 Major grins
    edited October 6, 2013
    Allen wrote: »
    Worth a try. Not 100% sure correct though.

    .sm-user-ui .sm-tiles .sm-tile-content:not(.sm-gallery-smugmug) {...}

    Thanks for the idea, maybe someone will chime in with the correct code class to use...
  • Options
    brandofamilybrandofamily Registered Users Posts: 2,013 Major grins
    edited October 7, 2013
    bump for hope
  • Options
    brandofamilybrandofamily Registered Users Posts: 2,013 Major grins
    edited October 8, 2013
    Still hoping for help on this one...
Sign In or Register to comment.