Options

Modify Gallery & Folder title font

GolfnutGolfnut Registered Users Posts: 131 Major grins
edited November 15, 2013 in SmugMug Customization
11-13-2013 7-44-37 PM.jpg
Is there a CSS for changing the font size for the Gallery and Folder titles (red arrows)?

Also, I recall seeing a CSS method for removing the icons (white arrow) - anyone remember that one?

Thanks in advance.
Golfnut

Comments

  • Options
    GolfnutGolfnut Registered Users Posts: 131 Major grins
    edited November 13, 2013
    Found part of it...
    Here is how to remove the gallery icons

    /* Remove gallery icon + center gallery captions */
    .sm-page-widget-galleries .sm-tile-type-icon {
    display:none;
    }
    .sm-page-widget-galleries .sm-tile-info {
    text-align:center;
    }
  • Options
    GolfnutGolfnut Registered Users Posts: 131 Major grins
    edited November 13, 2013
    and this removes the icon in Folders
    /* Remove folder icon + center folder captions */
    .sm-tile-folder .sm-tile-type-icon:after, .sm-tile-album .sm-tile-type-icon:after {
    display: none;
    }
    .sm-tile-folder .sm-tile-info {
    text-align:center;
    }
  • Options
    GolfnutGolfnut Registered Users Posts: 131 Major grins
    edited November 15, 2013
    Smugmug Gallery Style - Title Font
    Can anyone let me know how to change this font and size of these titles?
    Attachment not found.

    I used this to change the center the text in the individual gallery and folder objects, but I can't figure out how to change the title.

    .sm-page-widget-galleries .sm-tile-info {
    text-align:center;
    }

    .sm-tile-folder .sm-tile-info {
    text-align:center;
    }

    Thanks,
    Golfnut
  • Options
    Hikin' MikeHikin' Mike Registered Users Posts: 5,462 Major grins
    edited November 15, 2013
    If you have already changed the title to center them, then add 'font-size:20px;'. Change the size to suit.
Sign In or Register to comment.