Options

Padding between Gallery Description and Thumbnails?

pmbpropmbpro Registered Users Posts: 236 Major grins
edited August 30, 2013 in SmugMug Customization
Hi everyone,

Does anyone know if it's possible to add some padding/space between a gallery's description and the actual thumbnails?

I have the code for adding space between the breadcrumbs and description, but not below the description. The only thing I could think of to accomplish this was to add two <br> tags below the text, but I was hoping I wouldn't have to do this for every gallery.

Here's an example page to illustrate, where the description is too close to the thumbnails for my liking:
http://www.pmbimages.com/Galleries/People/Candids/Norman-Reedus

Is this possible to add padding with a CSS code? Can someone help?

Thanks. :-)
pmb images
Film/TV Stills Photography
"When your work speaks for itself, don't interrupt." ~ Henry J. Kaiser

Comments

  • Options
    AllenAllen Registered Users Posts: 10,011 Major grins
    edited August 29, 2013
    pmbpro wrote: »
    Hi everyone,

    Does anyone know if it's possible to add some padding/space between a gallery's description and the actual thumbnails?

    I have the code for adding space between the breadcrumbs and description, but not below the description. The only thing I could think of to accomplish this was to add two <br> tags below the text, but I was hoping I wouldn't have to do this for every gallery.

    Here's an example page to illustrate, where the description is too close to the thumbnails for my liking:
    http://www.pmbimages.com/Galleries/People/Candids/Norman-Reedus

    Is this possible to add padding with a CSS code? Can someone help?

    Thanks. :-)
    Might try this in "all galleries" CSS.

    .sm-gallery-header-has-description {margin-bottom: 20px;}
    Al - Just a volunteer here having fun
    My Website index | My Blog
  • Options
    RKnechtRKnecht Registered Users Posts: 366 Major grins
    edited August 29, 2013
    Put a CSS box in your "All Galleries" and add this:

    .sm-gallery-header .sm-gallery-description {
    margin: 0px 275px 25px 30px;
    }

    Change the values to suit your taste. I am using a 25px space between the gallery description and thumbs.
    A few Nikon bodies and some fast Nikon glass

    www.richknechtphotography.com
  • Options
    pmbpropmbpro Registered Users Posts: 236 Major grins
    edited August 29, 2013
    Allen wrote: »
    Might try this in "all galleries" CSS.

    .sm-gallery-header-has-description {margin-bottom: 20px;}


    YAY! It worked. clap.gif I'm using 30px for my padding.
    Thank you so much Allen and RKnecht!! I really appreciate your help and quick responses. bowdown.gif
    pmb images
    Film/TV Stills Photography
    "When your work speaks for itself, don't interrupt." ~ Henry J. Kaiser
  • Options
    W.W. WebsterW.W. Webster Registered Users Posts: 3,204 Major grins
    edited August 30, 2013
    RKnecht wrote: »
    Put a CSS box in your "All Galleries" and add this:
    .sm-gallery-header .sm-gallery-description {
    margin: 0px 275px 25px 30px;
    }
    Thanks for this, but can you tell me how can I make it apply only to SmugMug-style galleries?
  • Options
    AllenAllen Registered Users Posts: 10,011 Major grins
    edited August 30, 2013
    I'm guessing Smugmug has decided that adding the gallery style to the page body class was too much trouble.
    Al - Just a volunteer here having fun
    My Website index | My Blog
  • Options
    W.W. WebsterW.W. Webster Registered Users Posts: 3,204 Major grins
    edited August 30, 2013
    Allen wrote: »
    I'm guessing Smugmug has decided that adding the gallery style to the page body class was too much trouble.
    Meaning, this cannot be done?
  • Options
    AllenAllen Registered Users Posts: 10,011 Major grins
    edited August 30, 2013
    Meaning, this cannot be done?
    Maybe someone else can find a way to specify a gallery style but I saw nothing in the page source for this.
    Al - Just a volunteer here having fun
    My Website index | My Blog
  • Options
    dallaswdallasw Registered Users Posts: 37 Big grins
    edited August 30, 2013
    Allen wrote: »
    I'm guessing Smugmug has decided that adding the gallery style to the page body class was too much trouble.
    There are classes to target each gallery style, just not on the body.

    SmugMug: sm-gallery-smugmug
    Thumbnail: sm-gallery-thumbnail
    Collage Landscape: sm-gallery-roworganic
    Collage Portrait: sm-gallery-columnorganic
    Journal: sm-gallery-journal
    Slideshow: sm-gallery-slideshow

    Thanks for this, but can you tell me how can I make it apply only to SmugMug-style galleries?

    Using the above CSS class, the change can be applied to just SmugMug style galleries like so:
    .sm-gallery-smugmug .sm-gallery-header-has-description {
     	margin-bottom: 30px; 
    }
    
  • Options
    AllenAllen Registered Users Posts: 10,011 Major grins
    edited August 30, 2013
    dallasw wrote: »
    There are classes to target each gallery style, just not on the body.
    ...
    So it looks like body classes focus on the page types like the homepage, pages, folders and galleries.
    Then embedded down in them is the style. The problem I'm having is parent/child relationships, and not
    being able to flow down things like a banner/logo added to a folder also applying to its children.
    Al - Just a volunteer here having fun
    My Website index | My Blog
  • Options
    W.W. WebsterW.W. Webster Registered Users Posts: 3,204 Major grins
    edited August 30, 2013
    dallasw wrote: »
    Using the above CSS class, the change can be applied to just SmugMug style galleries like so
    Thanks Dallas. Now I've successfully aligned my SmugMug gallery descriptions without upsetting those in my my two Landscape Montage galleries. Excellent! thumb.gif
Sign In or Register to comment.