Change text on image banner mobile view

Solved

Change text on image banner mobile view

charlotte1992
Tourist
7 0 4

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! 

Screenshot 2025-04-18 at 9.40.29 pm.png

Accepted Solution (1)

DaisyVo
Shopify Partner
4446 493 589

This is an accepted solution.

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 

DaisyVo_0-1745027847676.png

 

Best,

DaisyVo

 

Please let us know if our reply is helpful by giving it a Like or marking it as a Solution!

Avada SEO & Image Optimizer - The #1 SEO solution

View solution in original post

Replies 4 (4)

TheScriptFlow
Shopify Partner
709 49 95

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:

thescriptflow_0-1744980033574.png

 

 

- Need a Shopify Specialist? Chat on WhatsApp Or Email at info@thescriptflow.com

- Boost Your Sales with Affiliate Marketing - UpPromote: Affiliate & Referral


- If my solution was helpful, mark it as a solution and hit the like button! And Wait Don't forget to Buy me a Coffee

Made4uo-Ribe
Shopify Partner
10202 2422 3068

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;
}
}
  • And Save.
  • Result:
  • Made4uoRibe_0-1744980149220.png

     

 

 

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

If this fixed your issue, Likes and Accept as Solution are highly appreciated. Coffee tips fuel my dedication.
Get experienced Shopify developers at affordable rates—visit Made4Uo.com for a quick quote!
Need THEME UPDATES but have custom codes? No worries, for an affordable price.

DaisyVo
Shopify Partner
4446 493 589

This is an accepted solution.

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 

DaisyVo_0-1745027847676.png

 

Best,

DaisyVo

 

Please let us know if our reply is helpful by giving it a Like or marking it as a Solution!

Avada SEO & Image Optimizer - The #1 SEO solution
charlotte1992
Tourist
7 0 4

This worked! Thank you so much!