Change text on image banner mobile view

Hello

I am using the Broadcast theme and I am wanting to move the location of the text on the mobile view.

I would like the move the text to the bottom of the photo.

Thank you for your help!

Please past this code in the end of theme.css file.

.hero__content__wrapper {
    align-items: flex-end !important;
}

Here is how you can find theme.css file.

Go to Shopify Admin > Online Store > Edit Code > theme.css

Results:

Hi @charlotte1992

TRy this one.

  1. From your Shopify admin dashboard, click on “Online Store” and then “Themes”.
  2. Find the theme that you want to edit and click on “Actions” and then “Edit code”.
  3. 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){
.hero__content__wrapper .hero__content {
    align-self: end !important;
}
}

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

Hi @charlotte1992

You can try to follow this step
Step 1: Go to Edit code
Step 2: Find file theme.css and add this code at the end of the file

@media (max-width: 768px) {
.hero__content__wrapper.frame__item.align--bottom-left-desktop.align--middle-center-mobile {
    align-items: flex-end !important;
}
}

Result

Best,

DaisyVo

This worked! Thank you so much!