To move Description to right of image in Gallery Slideshow
#1. All Slideshows
You can use this code to Custom CSS box.
@media screen and (min-width:768px) { figure.gallery-slideshow-item { display: flex; align-items: center; flex-direction: row !important; } figcaption.gallery-caption.gallery-caption-slideshow { position: static; max-width: unset !important; width: 50%; }}
Result
#2. Specific Slideshow
First, you need to find Slideshow ID.
In my example, it is: section[data-section-id=”6707a04e0b698b4fb4bd8f3e”]
Next, use CSS code like this
@media screen and (min-width:768px) { section[data-section-id="6707a04e0b698b4fb4bd8f3e"] { figure.gallery-slideshow-item { display: flex; align-items: center; flex-direction: row !important; } figcaption.gallery-caption.gallery-caption-slideshow { position: static; max-width: unset !important; width: 50%; }}}