How to do i change button location on mobile?

there is a clash with my photo text and my shop all button

can i move the button down?

Hello @Andia

Thank you for reaching out to the Shopify community.

Here are the steps to align the button at the end of the banner on mobile devices.

  1. Navigate to the theme editor Online StoreThemesEdit Code.

  2. Search for the asset named as section-image-banner.css, open the file and search for the below code:

.banner--medium:not(.banner--mobile-bottom):not(.banner--adapt) .banner__content {
    min-height: 34rem;
}

Replace the above code with:

.banner--medium:not(.banner--mobile-bottom):not(.banner--adapt) .banner__content {
    min-height: 34rem;
    align-items: end;
}

Save the changes and please have a check once. Let me know if this was helpful.

Thanks.

thank u!