Buy me a coffee

How to move Slideshow Title over Image

To move Slideshow Title

How To Move Slideshow Title Over Image 1 Min

over Slideshow Images, like this

How To Move Slideshow Title Over Image 2 Min

#1. First, find Slideshow Section ID.
In my example, it is: section[data-section-id=”66f692881771982d38929b27″]

How To Move Slideshow Title Over Image 3 Min

#2. Use CSS code like this to Custom CSS box

section[data-section-id="66f692881771982d38929b27"] {
  div.user-items-list {
    position: relative;
}
div.list-section-title {
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    z-index: 999999;
    width: 100%;
}  
}
body {
    overflow-x:hidden;
}

How To Move Slideshow Title Over Image 4 Min