Buy me a coffee

Move caption over Gallery Reel Image

To make caption over Gallery Reel Images, you can follow these.

#1. First, edit Gallery Reel and enable Captions

894d8f4ed9577e092746 Min

You will see something like this
3dac37a763bec4e09daf Min
#2. Use this code to Custom CSS box to move caption over images
figcaption.gallery-caption.gallery-caption-reel {
    opacity: 1 !important;
    visibility: visible !important;
    position:absolute;
    top: 50%;
    left:50%;
    transform: translate(-50%,-50%);
    margin: 0 !important;
    height: auto !important;
}

40f7d0bc88a52ffb76b4 Min

Result

976d1c85459ce2c2bb8d Min

#3. If you want to apply it for specific gallery reel, you can find Reel ID.
Then use CSS code like this

section[data-section-id="66d41e080d7e43167a4dadad"] figcaption.gallery-caption.gallery-caption-reel {
    opacity: 1 !important;
    visibility: visible !important;
    position:absolute;
    top: 50%;
    left:50%;
    transform: translate(-50%,-50%);
    margin: 0 !important;
    height: auto !important;
}

F1c721867f9fd8c1818e Min