Folder names & folder display pic size

Dave17Dave17 Registered Users Posts: 86 Big grins
edited September 29, 2013 in SmugMug Support
1) My galleries tend to have long names. I need to display the entire name. One solution is to try changing the font size ==>How can I change the font size on the folder name so that the entire gallery name displays? Is there any other way I can accomplish this? See image below.

2) Is there a way to have the folder/gallery display image fit into the display box? See image below.

Thanks,

--Dave
--Dave

Comments

  • sarahksarahk Registered Users Posts: 110 Major grins
    edited August 4, 2013
    I have the same issue with my gallery names. I ended up changing it so the titles appear over top of the image, but it is definitely not my preference. It was the only setting I could find that would show the entire title. I entered a feature request for this in feedback.smugmug.com, please add some votes! http://feedback.smugmug.com/forums/17723-smugmug/suggestions/4257118-new-smugmug-more-options-for-the-display-of-titl

    As far as your second issue, do you want square thumbnails or do you want the regular aspect ratio? I'm not sure if I understand what you are asking. Anyway, there are options for how to display the thumbnails. Under Customize site (while you are on that page), click on the wrench to access the settings for the Galleries content block. There are layout options such as collage landscape which would show the original aspect ratio. Also, you can change the aspect ratio too, but I think if you are still using the grid layout, the ratio will be the same for each photo (so if there are both landscape and portrait orientation, some will get cropped). I hope that helps a bit.
  • kyllitedrekyllitedre Registered Users Posts: 24 Big grins
    edited September 29, 2013
    Totally agree. I gave it 3 votes. Hope it gets enough votes one day. That's a real pitty, seems such a simple thing...
  • JtringJtring Registered Users Posts: 679 Major grins
    edited September 29, 2013
    Dave17 wrote: »
    1) My galleries tend to have long names. I need to display the entire name. One solution is to try changing the font size ==>How can I change the font size on the folder name so that the entire gallery name displays? Is there any other way I can accomplish this? ...

    Consider the following CSS Mods. The first block below allows multi-line titles when using grid spacing and titles below the thumbnail. Somewhere in this forum, there's a related CSS mod if the title is on top of the thumbnail, but I don't have it at my fingertips since I don't use it. The second CSS block below adjusts font weight and size. Both of these can be put in a CSS block applying to the entire site. I'm still a a CSS apprentice, so perhaps one of the masters on this forum can tune up this code.
    /* Allows multi-line titles on grid displays
    if you put the title below the thumbnail */
    .sm-tiles-grid.sm-tiles-info-after .sm-tile-info p {
    overflow: visible;
    white-space: normal;
    }
    
    /* This block sets the normal font weight (rather than light)
    on navigation content boxes and provides a hook too change the font size.
    Default font size is 12 pt so as written, this keeps that the same. */
    .sm-page-widget-folders .sm-tile-title,
    .sm-page-widget-galleries .sm-tile-title,
    .sm-page-widget-nodes .sm-tile-title,
    .sm-page-widget-pages .sm-tile-title {
     font-size:12pt;
     font-weight:400;
    }
    
    Jim Ringland
    jtringl.smugmug.com
    Jim Ringland . . . . . jtringl.smugmug.com
Sign In or Register to comment.