Re: Text line break within banner image in Dawn 12

Solved

Text line break within banner image in Dawn 12

TheModBackyard
Tourist
4 0 2

Hello!
I would like the text within my banner image to break after the word "for" (so that the words 'Modern' are aligned on the left).  Any code modifcation suggestions?
https://the-modern-backyard-2023.myshopify.com/

Thanks in advance!

Accepted Solution (1)
Made4uo-Ribe
Shopify Partner
9661 2298 2863

This is an accepted solution.

Ops! I miss this notification I think. 

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 "theme. Liquid" file. Find the </body> tag and paste the code below before the tag. 

 

<style>
@media screen and (min-width: 750px){
.banner--desktop-transparent .banner__box {
    max-width: 75rem;
}
}
</style>

 

And Save.

If it wont work just add the !important.

 

<style>
@media screen and (min-width: 750px){
.banner--desktop-transparent .banner__box {
    max-width: 75rem !important;
}
}
</style>

 

Result;

Made4uoRibe_0-1705867834436.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.
Create custom Shopify pages effortlessly with PageFly's drag-and-drop ⚙️.

View solution in original post

Replies 5 (5)

Made4uo-Ribe
Shopify Partner
9661 2298 2863

hi @TheModBackyard 

I just like to check, but its password protected. 

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.
Create custom Shopify pages effortlessly with PageFly's drag-and-drop ⚙️.
TheModBackyard
Tourist
4 0 2

Whoops! Now open...

TheModBackyard
Tourist
4 0 2

@Made4uo-Ribe  still available?

Made4uo-Ribe
Shopify Partner
9661 2298 2863

This is an accepted solution.

Ops! I miss this notification I think. 

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 "theme. Liquid" file. Find the </body> tag and paste the code below before the tag. 

 

<style>
@media screen and (min-width: 750px){
.banner--desktop-transparent .banner__box {
    max-width: 75rem;
}
}
</style>

 

And Save.

If it wont work just add the !important.

 

<style>
@media screen and (min-width: 750px){
.banner--desktop-transparent .banner__box {
    max-width: 75rem !important;
}
}
</style>

 

Result;

Made4uoRibe_0-1705867834436.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.
Create custom Shopify pages effortlessly with PageFly's drag-and-drop ⚙️.
TheModBackyard
Tourist
4 0 2

Fantastic.  Thank you!