Okay
  Public Ticket #3842918
Custom Image Gallery
Closed

Comments

  •  2
    Camille started the conversation

    Hello,

    I'd like to customize the image gallery display.
    1. I'd like there to be no link on the image, no lightbox. Where is the setting?
    2. I'd like to configure the image title and caption styles like this:
    Image Title = H6
    Caption = paragraph

    Thank you for your help!

  •  3,158
    Andrew replied

    Hi Camille,

    Thank you for getting in touch.

    You can disable the image gallery lightbox in the Salient > General Settings > Functionality and disable the Auto Lightbox Image Links option.

    As for the title and caption, customizations that fall beyond the scope of our support will be required.

    Try that and let us know how it goes.

    Cheers,

  •  2
    Camille replied

    Hi Andrew, 

    Thanks for your quick reply ! 

    Unfortunately, the lightbox still works, despite the settings. Do you have any idea how to change this? 

    For the caption, do you know where I can change the color of the text, which is too light and not very legible? 
    I'm attaching it for you to see. 

    Thanks in advance! 

    Attached files:  Capture d’écran 2025-03-24 à 10.23.23.png

  •  2,067
    Judith replied

    Hello Camille,

    Thanks for writing back.

    Please share your website URL so we can investigate further.

    I look forward to your response.

  •   Camille replied privately
  •  9,197
    Tahir replied

    Hey Again,

    To remove the click use below CSS.

    Add this into the Custom CSS box in your Salient Theme Options panel (We write all Custom CSS in the Live Browser to ensure accuracy. If you cannot see any changes, make sure there is no red cross in the Custom CSS Box as any syntax error would cause all CSS under that line of code to not show up on the Frontend):

    .wpb_gallery_slidesimage_grid .col.span_4.element {
        pointer-events:none !important;
    }

    Regarding changing the heading tags the php template would need be edited: https://themenectar.com/docs/salient/overriding-salient-wpbakery-element-template-files-through-a-child-theme/ 

    Best,

     


    ThemeNectar Support Team 

  •   Camille replied privately
  •  9,197
    Tahir replied

    Hey Again,

    Thanks for reaching out! .

    I am afraid the caption gets stripped of any html tags.

    Add this into the Custom CSS box in your Salient Theme Options panel (We write all Custom CSS in the Live Browser to ensure accuracy. If you cannot see any changes, make sure there is no red cross in the Custom CSS Box as any syntax error would cause all CSS under that line of code to not show up on the Frontend):

    .portfolio-items .work-meta {
        width: 100%;
    }
    
    .portfolio-items .work-meta p {
        color: #000 !important;
    }

    Thanks

     


    ThemeNectar Support Team 

  •   Camille replied privately
  •   Andrew replied privately
  •   Camille replied privately
  •  3,158
    Andrew replied

    Hi Camille,

    Thank you for getting back to us.

    I can't seem replicate this error from our end. Could you share a screenshot of what you're seeing from your end so we can advise.2867597959.png

    We look forward to your reply.

    Kind regards,

  •  2
    Camille replied

    The bug occurs on the images in the second part of the page. They overlap and the captions don't appear. 

    I hope the pictures help ? 

    Attached files:  Capture d’écran 2025-04-16 à 11.55.25.png
      Capture d’écran 2025-04-16 à 11.55.36.png

  •  9,197
    Tahir replied

    Hey Again,

    Since the caption plugin is changing the image html markup its height is not getting calculated correctly. 

    Try using a different method to add the captions in the plugin settings and check.

    Best,

     


    ThemeNectar Support Team