Why isn't my text slideshow displaying correctly on mobile?

Text looks great on my slideshow on desktop but gets cut off on mobile. Help!

You can try out here

Hello @Renaye

You can follow these steps:

  1. Go to Online Store->Theme->Edit code

  1. Open your theme.liquid file, paste the below code before


I hope the above is useful to you.

Kind & Best regards,
GemPages Support Team

Hello @nizo92

I would like to give you a solution to support you:

  1. Go to Online Store-> Theme-> Edit code
  2. Open your theme.liquid theme file
  3. Paste the below code before :
<style>
@media(min-width: 280px) and (max-width: 767px){
.slideshow__text-content.slideshow__text-content--vertical-center.text-left {
padding: 0px 15px !Important;
top: 30% !important;
}
.slideshow--large, .slideshow--larger, .slideshow--largest {
height: 80vh;
}
}
</style>

Was my reply helpful? Please Like and Accept Solution. This mean alot to me.

Hi @nizo92

This is Victor from PageFly - Landing Page Builder App.

You can try this code by following these steps:

Go to Online store => themes => actions => edit code and add this code on file theme.css

@media screen and (max-width: 767px){

.slideshow__text-content.slideshow__text-content--vertical-center.text-left {

padding: 0px 15px !Important;

top: 30% !important;

}

}

Hope this answer helps.
Best regards,
Victor | PageFly

Thank you so much!