Okay
  Public Ticket #2988345
captions under pictures in my gallery
Closed

Comments

  •  1
    Weill started the conversation

    Hello

    I want to see the caption of each picture when I get to the slider by clicking on one image of the folio set on this example https://blog.dominique-weill.com/portfolio/remarquable/

    Its seems to me the solution should be obvious in a theme designed to present one-s work...

    Did I miss something when creating the portfolio item ??

    Thank you for your help.

  • [deleted] replied

    Hi Weill,

    You are right. This option should be implemented in theme options however for now you should add this code in functions.php to make captions visible in lightbox as well:

    add_filter( 'kalium_portfolio_gallery_image_titles_lightbox', '__return_true' );

    I have added and it worked fine:

    medium
    (view large image)

  •  1
    Weill replied

    Thank you very much. It works ! I added these shortlines not to have a black rounded frame under the caption.

    element.style {
    }
    .nivo-lightbox-theme-default span.nivo-lightbox-title {
        font: 14px/20px 'Helvetica Neue', Helvetica, Arial, sans-serif;
        font-style: normal;
        font-weight: normal;
        background: none;
        color: #fff;
        padding: 7px 15px;
        /* border-radius: 30px; */
    }