Dawn theme - Image banner text full width

Solved

Dawn theme - Image banner text full width

INFRA
Shopify Partner
243 2 85

Hi there! I have 2 questions:

 

1.  I would like my header text on the image banner to be full width so it's not on 2 lines like below.

Screenshot 2024-10-08 at 13.26.55.png

Website

password: fbc

 

 

2. Is it possible to have all the text on the image & the logo further on the left on a bigger size screen? It's currently showing too much in the center: 

Screenshot 2024-10-08 at 13.29.36.png

 

thanks so much!

 

Accepted Solution (1)

AnneLuo
Shopify Partner
1299 228 267

This is an accepted solution.

You can try this code by following these steps:
Step 1: Go to the online store ->Theme ->Edit Code.
Step 2: Find the theme.liquid file and add the following code above the </head> tag

 

<style>
@media only screen and (min-width: 750px) {
  .banner--content-align-left.banner--desktop-transparent .banner__box{
    max-width: 72rem !important;
  }
}
@media only screen and (min-width: 1440px) {
  .banner__content.banner__content--bottom-left.page-width.scroll-trigger.animate--slide-in {
    max-width: 100% !important;
 }
}

</style>

 

Result:

AnneLuo_0-1728356356284.png


Hopefully it will help you. If yes then Please don't forget hit Like and Mark it as solution!

If this is helpful, please Like and Accept the solution.
Want to modify or custom changes on store? Let me help.
- Feel free to Email Me   

Buy Me A Coffee

View solution in original post

Replies 6 (6)

Dan-From-Ryviu
Shopify Partner
11721 2296 2476

Hi @INFRA 

ok 

- Helpful? Like & Accept solution!
- Ryviu - Product Reviews & QA app: Import reviews from AliExpress, Amazon, Etsy, Walmart, Dhgate and CSV.
- Amazon Products Importer - Import Amazon Products to Dropship in Your Store!
- Lookfy Gallery: Lookbook Image - Gain customers with photo gallery, video & shoppable image
- Reelfy‑Shoppable Videos+Reels: Create shoppable videos to engage customers and drive more sales.
- En...
Sign up now.

AnneLuo
Shopify Partner
1299 228 267

This is an accepted solution.

You can try this code by following these steps:
Step 1: Go to the online store ->Theme ->Edit Code.
Step 2: Find the theme.liquid file and add the following code above the </head> tag

 

<style>
@media only screen and (min-width: 750px) {
  .banner--content-align-left.banner--desktop-transparent .banner__box{
    max-width: 72rem !important;
  }
}
@media only screen and (min-width: 1440px) {
  .banner__content.banner__content--bottom-left.page-width.scroll-trigger.animate--slide-in {
    max-width: 100% !important;
 }
}

</style>

 

Result:

AnneLuo_0-1728356356284.png


Hopefully it will help you. If yes then Please don't forget hit Like and Mark it as solution!

If this is helpful, please Like and Accept the solution.
Want to modify or custom changes on store? Let me help.
- Feel free to Email Me   

Buy Me A Coffee

INFRA
Shopify Partner
243 2 85

This worked, thank you! (I added it in the CSS in the editor so it rolls over if we do a theme update)

 

Can I add something to move the logo to the left for the larger screen too?

AnneLuo
Shopify Partner
1299 228 267

Update the code 

<style>
@media only screen and (min-width: 750px) {
  .banner--content-align-left.banner--desktop-transparent .banner__box{
    max-width: 72rem !important;
  }
}
@media only screen and (min-width: 1440px) {
  .banner__content.banner__content--bottom-left.page-width.scroll-trigger.animate--slide-in,
  .page-width.utility-bar__grid.utility-bar__grid--3-col,
   header.header.header--middle-left.header--mobile-center.page-width.header--has-menu.header--has-social.header--has-account {
    max-width: 100% !important;
 }
}

</style>

 

If this is helpful, please Like and Accept the solution.
Want to modify or custom changes on store? Let me help.
- Feel free to Email Me   

Buy Me A Coffee

INFRA
Shopify Partner
243 2 85

hi @AnneLuo ! I placed it on the right side now, and was wondering if we can move it a bit more to the right even?

 

Screenshot 2024-10-09 at 13.29.10.png

INFRA
Shopify Partner
243 2 85

Hi, @Dan-From-Ryviu   I have not changed anything and it is still on 2 lines for me. Would you have the solution?

If not, are you please able to remove your message so it does not look like it's been solved? thanks so much!