Options

Remove Captions and Bar in Lightbox

photolordphotolord Registered Users Posts: 43 Big grins
How do I remove captions and the caption bar from the lightbox view. I've tried a few css codes and cam't seem to nail it down. I could edit all my photos to remove the captions, but it would take very long. I'm looking for an easier solution. Thanks for your help if anyone can tell me.
Best regards,

Matt George

Comments

  • Options
    DanCarl97DanCarl97 Registered Users Posts: 139 Major grins
    edited February 21, 2014
    Hopefully, this is what you're looking for. Place this in a CSS block on 'Entire Site' (unless you only want it in specified galleries) and it should do the trick.
    div.sm-user-ui div.sm-lightbox-content div.sm-lightbox-info {
    display:none;
    }
    
  • Options
    photolordphotolord Registered Users Posts: 43 Big grins
    edited February 21, 2014
    Make the caption bar in lightbox transparent
    DanCarl97 wrote: »
    Hopefully, this is what you're looking for. Place this in a CSS block on 'Entire Site' (unless you only want it in specified galleries) and it should do the trick.
    div.sm-user-ui div.sm-lightbox-content div.sm-lightbox-info {
    display:none;
    }
    

    Thanks. That was very helpful, but the ugly white caption bar still shows when the mouse hovers over the area. Is there a way to make the caption bar in the lightbox transparent? Example: http://mattgeorge.me/Portraits/The-Barnes-Family-1/i-vQg2RRm/A
    Best regards,

    Matt George
  • Options
    AllenAllen Registered Users Posts: 10,012 Major grins
    edited February 21, 2014
    photolord wrote: »
    Thanks. That was very helpful, but the ugly white caption bar still shows when the mouse hovers over the area. Is there a way to make the caption bar in the lightbox transparent? Example: http://mattgeorge.me/Portraits/The-Barnes-Family-1/i-vQg2RRm/A
    Try this. This transparency makes it virtually invisible.
    .sm-user-ui .sm-lightbox .sm-lightbox-nav {
        background-color: rgba(23, 23, 26, [COLOR=Red]0.0001[/COLOR]);
    }
    
    Al - Just a volunteer here having fun
    My Website index | My Blog
  • Options
    mootmoot Registered Users Posts: 7 Big grins
    edited April 23, 2014
    I have the same problem and tried that code, however the white captions bar seems undiminished, covering up my photos ... anyone else find a way of making the Lightbox caption bar transparent?
  • Options
    jpwaldronjpwaldron Registered Users Posts: 1 Beginner grinner
    edited April 24, 2014
    Thanks DanCarl97 it worked awesomely!
  • Options
    SamSam Registered Users Posts: 7,419 Major grins
    edited May 5, 2014
    DanCarl97 wrote: »
    Hopefully, this is what you're looking for. Place this in a CSS block on 'Entire Site' (unless you only want it in specified galleries) and it should do the trick.
    div.sm-user-ui div.sm-lightbox-content div.sm-lightbox-info {
    display:none;
    }
    

    Dan!!!!!! You the man!

    Sam
Sign In or Register to comment.