• Resolved victorgodg

    (@victorgodg)


    Hi

    I’m using the free version of FooGallery & Foobox, and both plugins are great for my task. In gallery settings I made the image title visible on hover, and I want to make the image caption, not the title, visible in the lighbox. But it displays them both. I’m using the following settings:
    – Style: Responsive image gallery
    – Hover Effects/Caption Visibility: On Hover
    – Captions/Title: Attachment Title
    – Captions/Description: None
    I have tried to change “Only show the caption when hovering over the image” toggle in the Foobox settings but it has no visible effect.

    The page I need help with: [log in to see the link]

Viewing 4 replies - 1 through 4 (of 4 total)
  • Hi @victorgodg,

    Try adding the code shown below to your theme’s style.css or custom css/additional css area. To enable the code to affect a specific gallery, go to wordpressadmin->foogallery->galleries, edit the gallery you want and add the code to the custom css area.

    .fbx-caption-title{
    visibility:hidden;
    }

    Kind regards,
    Blaise.

    Thread Starter victorgodg

    (@victorgodg)

    Thank you, Blaise, it works! The only disadvantage is that the height of the area containing description remained the same (there is an empty line over the caption). Is there any way to shrink it?

    Hi @victorgodg

    We’re glad to know that our previous solution worked for you.

    To reduce the height of that area, simply add this CSS code where you added the previous one:

    
    .fbx-caption-title {
        padding: 0px !important;
    }

    Please let us know if it does work for you.

    Regards,
    Elvis.

    Thread Starter victorgodg

    (@victorgodg)

    Hi Elvis,

    it works and looks excellent!
    Thank you for the prompt response.

    Best regards,
    Victor

Viewing 4 replies - 1 through 4 (of 4 total)
  • The topic ‘Hide image title in lightbox’ is closed to new replies.