Image Banner Desktop Content Position Set to Top Left, but appering central

Solved

Image Banner Desktop Content Position Set to Top Left, but appering central

Mattgws
Visitor
2 0 2

Hi,

 

This is how my Image banner appears in the design view which is how I'd like it.

Mattgws_0-1727105039207.png

This is how it appears on my web browsers

Mattgws_1-1727105088246.png

 

Any idea why it's appearing centre rather than left?

 

Site watchbits.co.uk

Theme: Dawn

Accepted Solution (1)

Made4uo-Ribe
Shopify Partner
8169 1964 2403

This is an accepted solution.

Hi @Mattgws 

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.

 

@media screen and (min-width: 750px) {
    .banner .banner__content.banner__content--bottom-right {
        justify-content: flex-start;
    }
}

 

Amd Save. 

Result:

Made4uoRibe_0-1727105547451.png

let me know if you want more far right. 

 

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 is highly appreciated. Coffee tips fuels my dedication.
Get EXPERIENCED Shopify developers at affordable rates—visit Made4Uo.com for quick quote!
Do not lost your Shopify store! Get FREE trial with ✔️ Rewind Backup: Automatic, reliable, stress-free.
Need THEME UPDATES but has custom codes? No worries, contact us for affordable price.

View solution in original post

Replies 3 (3)

BSS-TekLabs
Shopify Partner
2322 688 809

- Here is the solution for you @Mattgws 
- Please follow these steps:
1. Go to Online Store --> Theme --> Edit code.
2. Open your theme.liquid file
3. In theme.liquid, paste the below code before </head> and press 'Save' to save it

 

<style>
@media screen and (min-width: 750px) {
    .banner__content.banner__content--bottom-right {
        justify-content: left !important;
    }
}
</style>

 

- Here is the result you will achieve:

BSSTekLabs_0-1727105594750.png

 

- Please press 'Like' and mark it as 'Solution' if you find it helpful. Thank you.

If our suggestions are useful, please let us know by giving it a like or marking it as a solution.


Salepify: Efficiently increase sales conversion with sale-driven features like auto add to cart, free gifts (free plan available)


Salemate: Boost your AVO with 2-layer offer, countdown upsell in your post purchase page


BSS Commerce - Full-service eCommerce Agency | Use Shopify for 1$ in the first month now

Made4uo-Ribe
Shopify Partner
8169 1964 2403

This is an accepted solution.

Hi @Mattgws 

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.

 

@media screen and (min-width: 750px) {
    .banner .banner__content.banner__content--bottom-right {
        justify-content: flex-start;
    }
}

 

Amd Save. 

Result:

Made4uoRibe_0-1727105547451.png

let me know if you want more far right. 

 

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 is highly appreciated. Coffee tips fuels my dedication.
Get EXPERIENCED Shopify developers at affordable rates—visit Made4Uo.com for quick quote!
Do not lost your Shopify store! Get FREE trial with ✔️ Rewind Backup: Automatic, reliable, stress-free.
Need THEME UPDATES but has custom codes? No worries, contact us for affordable price.
Mattgws
Visitor
2 0 2

Thanks, that's perfect