Slideshow text And button bellow the slide on Debut theme


Hello! How to move text and button to the slide image on mobile? Debut theme.

Hi @GermansCulenko

Please try this

  1. Go to Online Store > Themes > Action > Edit code > Assets > Open /theme.css
  2. Paste the below code at the bottom of the file.
@media only screen and (max-width: 749px) {
.slideshow__title, .slideshow__subtitle {
    display: inline-block !important;
}
.slideshow__text-content--mobile {display: none !important;}
}

If you feel like my answer is helpful, please mark it as a SOLUTION. Let me know if you have any questions!

1 Like

Thank you!