dawn theme - banner image content aligned right

Solved

dawn theme - banner image content aligned right

xnyjyh
Trailblazer
390 0 45

Hello, i need my banner image content to be all the way right side with 15px padding from edge of devices/desktop.

 

This is the id #Banner-template--15002694090854__image_banner .banner__content 

 

I've tried justify-content: end !important

and few others, but none seemed to work.

 

 

Pplease help?

 

Thanks

 

Accepted Solution (1)

Made4uo-Ribe
Shopify Partner
10096 2398 3031

This is an accepted solution.

Hi @xnyjyh 

Thanks for the info, check this one. 

From you Admin page, go to Online Store > Themes

Select the theme you want to edit

Under the Asset folder, open the main.css(base.css, style.css or theme.css)

Then place the code below at the very bottom of the file.

 

div#Banner-template--15002694090854__image_banner .banner__content.banner__content--bottom-right.page-width {
    max-width: 100%;
}

 

And Save. 

Note: I didnt add more padding cause it already have a 15px. 

 

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.

View solution in original post

Replies 7 (7)

Made4uo-Ribe
Shopify Partner
10096 2398 3031

Hi @xnyjyh 

Would you mind to share your Store URL website? with password if its unpublish. 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.

AnneLuo
Shopify Partner
1295 228 266

Hi, @xnyjyh 

Can you please share the store URL so that I can assist you?

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

AnneLuo
Shopify Partner
1295 228 266

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>
.banner__content.banner__content--bottom-right.page-width {
  padding-right: 15px !important;
}
</style>

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

xnyjyh
Trailblazer
390 0 45

Does not work, ive tried that yesterday. has to start with the ID - #Banner-template--15002694090854__image_banner

AnneLuo
Shopify Partner
1295 228 266

You can give me the access of your store.I will help you with it.

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

Made4uo-Ribe
Shopify Partner
10096 2398 3031

This is an accepted solution.

Hi @xnyjyh 

Thanks for the info, check this one. 

From you Admin page, go to Online Store > Themes

Select the theme you want to edit

Under the Asset folder, open the main.css(base.css, style.css or theme.css)

Then place the code below at the very bottom of the file.

 

div#Banner-template--15002694090854__image_banner .banner__content.banner__content--bottom-right.page-width {
    max-width: 100%;
}

 

And Save. 

Note: I didnt add more padding cause it already have a 15px. 

 

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.
xnyjyh
Trailblazer
390 0 45

Awesome, thank you! worked like a charm 🙂