Hello, is anyone able to help me with this issue please? My ‘shop now’ button on mobile stays in the centre of the image, however, i want it to be at the bottom so it does not cover the text on the image. I saw a code from another question but it did not work.
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){
.banner__box.content-container {
align-self: flex-end !important;
}
}