Options

How to keep Slideshow caption - hide grey caption box!

ExtraFantasticExtraFantastic Registered Users Posts: 13 Big grins
edited June 5, 2015 in SmugMug Customization
Hello,
I'm trying to display captions under my images in Slideshow mode but don't want the grey caption box.
I can nix the box by using the following CSS code but not without losing the text as well:

.sm-tile-info
{
display: none;
}


and using 'display: hidden;' appears to do nothing.

Any idea how to handle this?

p.s. My site hasn't been published yet so I've attached an image of the problem area.

Thanks in advance!

Comments

  • Options
    Lille UlvenLille Ulven Registered Users Posts: 567 Major grins
    edited June 4, 2015
    What might help is using
    .sm-tile {
     background-color: #123123 !important;
    }
    

    Of course you would have to replace the 123123 with the actual color of your site :D

    If that does not do the trick for you, could you set up a gallery with a slideshow on your current site with the captions showing what you're thinking about an maybe only open it for "people with the link" and then give us a link here?
    That way it would be much easier for those of us who don't have slideshows with captions to try to help you out.

    Good luck

    Lille Ulven
    https://www.lilleulven.smugmug.com - The Photos of my travels
  • Options
    ExtraFantasticExtraFantastic Registered Users Posts: 13 Big grins
    edited June 4, 2015
    Thanks Lille! I was able to solve it using code very similar to yours:

    .sm-tile-content > .sm-tile-info {
    background-color: rgba(0, 0, 0, 0) !important;
    }



    Thanks again!
  • Options
    Lille UlvenLille Ulven Registered Users Posts: 567 Major grins
    edited June 5, 2015
    You're welcome ExtraFantastic
    https://www.lilleulven.smugmug.com - The Photos of my travels
Sign In or Register to comment.