Options

Move Gallery Title up?

NimaiNimai Registered Users Posts: 564 Major grins
edited October 23, 2013 in SmugMug Customization
My water mark is on the bottom, and in the theme I based by new site off of, so is the gallery name.

1qrr.jpg <--- :(

Does anyone have the CSS handy to move the gallery name up to the top, maybe? (Or other suggestions?)

Thanks!

Comments

  • Options
    leftquarkleftquark Registered Users, Retired Mod Posts: 3,784 Many Grins
    edited October 23, 2013
    Nimai wrote: »
    My water mark is on the bottom, and in the theme I based by new site off of, so is the gallery name.

    Does anyone have the CSS handy to move the gallery name up to the top, maybe? (Or other suggestions?)

    Try using this code:
    /* Move the info tile to the top of the image, rather than the bottom */
    .sm-tiles-info-over .sm-tile-info {
      top: 0px !important;
    }
    
    dGrin Afficionado
    Former SmugMug Product Team
    aaron AT aaronmphotography DOT com
    Website: http://www.aaronmphotography.com
    My SmugMug CSS Customizations website: http://www.aaronmphotography.com/Customizations
  • Options
    NimaiNimai Registered Users Posts: 564 Major grins
    edited October 23, 2013
    Thanks for the tip!
    I ended up having to add a height, too, or the darkened background would cover the entire image. Here's what I published:
    /* Move the info tile to the top of the image, rather than the bottom */
    .sm-tiles-info-over .sm-tile-info {
      top: 0px;
      height: 32px;
    }
    
Sign In or Register to comment.