wordpresslightbox

Is it possible to prevent lightbox controls and image title from automatically hiding?


Good Afternoon,

I am trying to help out a friend with their website and one of their wishes is for the image titles within lightbox to remain visible for as long as the lightbox image is open.

By default the image title and lightbox controls automatically hide after a couple of seconds, and pop back up if the mouse it moved. Is there a way to prevent this from happening please and the image title and controls remain visible?

The website is built using wordpress and the theme is astra. I'm unsure if lightbox is pre installed with the theme as it's not listed in the list of plugins

The title underneath the image i would lime to stay visible all the time and not auto hide if possible.

Appreciate any help Thanks


Solution

  • Add this CSS in your active theme style.css

     body .elementor-slideshow--ui-hidden .elementor-slideshow__footer{
       opacity: 1 !important;
       pointer-events: none;
    }