Hi,
This is how my Image banner appears in the design view which is how I’d like it.
This is how it appears on my web browsers
Any idea why it’s appearing centre rather than left?
Site watchbits.co.uk
Theme: Dawn
A user encountered an issue where their image banner appeared centered on their live site despite being set to top-left alignment in the design view.
Problem Details:
Solutions Provided:
Two community members offered CSS-based fixes:
theme.liquid file before the </head> tag.banner .banner__content with justify-content: flex-start for screens 750px and widerResolution:
The issue was successfully resolved using one of the provided CSS solutions. The user confirmed the fix worked as intended.
Hi,
This is how my Image banner appears in the design view which is how I’d like it.
This is how it appears on my web browsers
Any idea why it’s appearing centre rather than left?
Site watchbits.co.uk
Theme: Dawn
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:
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!
Thanks, that’s perfect