Options

How to show only the title and not title+caption in slideshow

umbertodpcumbertodpc Registered Users Posts: 2 Beginner grinner
edited July 22, 2015 in SmugMug Customization
For what I know, with the trigger "CAPTION ON", the slideshow shows both Title and Caption.
Is it possible to show only the title and not title+caption in the slideshow?

Thanx
Umberto

Comments

  • Options
    annnna8888annnna8888 Registered Users, Super Moderators Posts: 936 SmugMug Employee
    edited July 22, 2015
    Hi Umberto,

    Welcome to DGrin! Are you referring to the slideshow content block? Try placing a CSS content block in customize > content and design > Entire site, and enter this CSS in it:
    /*hide titles in slideshow*/
    .sm-user-ui .sm-tile-info .sm-tile-title {
        display: none;
    }
    
    If you mean something else, please describe in more detail and include a link to your site or specific page with the slideshow in question.

    Ana
    SmugMug Support Hero
    Ana
    SmugMug Support Hero Manager
    My website: anapogacar.smugmug.com
  • Options
    umbertodpcumbertodpc Registered Users Posts: 2 Beginner grinner
    edited July 22, 2015
    Ok it works. I only changed your code because I wanted to hide the caption and to show only the title.
    In order to get this, I substituted "title" with "caption" in you code.
    /*hide caption in slideshow*/
    .sm-user-ui .sm-tile-info .sm-tile-caption {
         display: none;
    }
    
    Thank you very much
  • Options
    annnna8888annnna8888 Registered Users, Super Moderators Posts: 936 SmugMug Employee
    edited July 22, 2015
    Sorry about that, I must have misread your question. I'm glad the adjusted code works! :)

    Ana
    SmugMug Support Hero
    Ana
    SmugMug Support Hero Manager
    My website: anapogacar.smugmug.com
Sign In or Register to comment.