How do I put file name centered under photo in Smugmug gallery view?

Lou GonzalezLou Gonzalez Registered Users Posts: 413 Major grins
edited November 19, 2013 in SmugMug Customization
I would very much like to display the photo number directly under the photo in Smugmug gallery view. Is this possible through some css? Right now it is way to bottom left.

Any help would be appreciated.

Comments

  • Lou GonzalezLou Gonzalez Registered Users Posts: 413 Major grins
    edited November 19, 2013
    Ok I sort of figured this out. It's not quite centered under the photo but it's much better and more visible. Here's the code in case anyone wants it:
    .sm-tile-info
    {
      margin-left:auto; 
      margin-right:0px;
    }
    

    Now if I could put "Photo #:" in front of it, that would be fabulous! Is that possible???
  • Lou GonzalezLou Gonzalez Registered Users Posts: 413 Major grins
    edited November 19, 2013
    Ok found more code to add text in front of the file names. Very Handy!
    /* Add the words "Photo #:" prior to the actual photo number*/
    .sm-tile-info:before 
    {
      content: "Photo #:";
    }
    

    I love these self help conversations with myself! :D
Sign In or Register to comment.