Text shown on the slideshow on mobile

How can i let the text that on desktop is shown on the slideshow picture also be showed on the picture on mobile, because now it is being displayed below the picture in a container.

Kind regards

Hi @lunalucenteskin

Would you mind to share your store URL? Thanks!

Hey @lunalucenteskin ,

Can you share the link to your store please? Thanks!

https://lunalucente.com/

Thanks for the info, check this one.

From your Shopify admin dashboard, click on “Online Store” and then “Themes”.

Find the theme that you want to edit and click on “Actions” and then “Edit code”.

In the “Assets” folder, click on “base.css, style.css or theme.css” file, depending on which file your theme uses to store its CSS styles. At the bottom of the file, add the following CSS code:

@media only screen and (max-width: 749px){
.m-slide__wrapper.container-fluid {
    background: transparent;
    position: absolute;
}
}
@media only screen and (max-width: 749px){
h2.m-richtext__title.m-slide__title.m\:text-white.h2 {
    font-size: 25px;
}
}

And Save.

Result:

Please don’t forget to Like and Mark Solution to the post that helped you. Thanks!

Hey @lunalucenteskin ,

Go to your theme’s “Edit Code” Option, then in the search bar type “theme.liquid”
Below the tag “” tag paste the following. Screenshot attached for reference.


Screenshot is for reference only, the correct code to paste is the one shown above.

Result:

Thanks a lot, do you also have an idea on how we can align it to the left?

Hey @lunalucenteskin ,

Replace the full code with this.