Hi there,
Is it possible to move the image in the multicolumns to the left of the content as below? Currently it is sitting above it, which is fine for mobile, but for anything bigger, I would like to show it like below.
Thanks so much!
passw: fbc
A user seeks to reposition the image in Shopify’s Dawn theme multicolumn section from above the content to the left side on desktop, while keeping it above on mobile.
Solutions Provided:
Three community members offered CSS code solutions:
base.css to create a horizontal layouttheme.liquid with media queries, including width adjustments (30% image, 70% content)Outcome:
The original poster confirmed Tech_Coding’s solution worked after adjusting the ratio to 80/20. They then requested an additional feature to center content on mobile only, which Tech_Coding addressed with a follow-up CSS snippet using a max-width media query for screens under 767px.
The discussion concluded successfully with the user expressing gratitude for the working solution.
Hi there,
Is it possible to move the image in the multicolumns to the left of the content as below? Currently it is sitting above it, which is fine for mobile, but for anything bigger, I would like to show it like below.
Thanks so much!
passw: fbc
Hi @INFRA
.multicolumn-card__info {
padding-top: 0!important;
}
.multicolumn-card.content-container {
display: flex;
flex-wrap: nowrap;
}
Hi @INFRA
Please add this code to Custom CSS of that Multiple column section
@media (min-width: 749px) {
.multicolumn-card {
display: flex;
align-items: center;
}
}
Hello @INFRA
You can add code by following these steps
Go to Online Store → Theme → Edit code.
Open your theme.liquid file
Paste the below code before on theme.liquid
my reply helpful? Click Like to let me know!
your question answered? Mark it as an Accepted Solution.
That worked! Thank you. (I adjusted to 80/20) Is it possible to have the content centered on mobile only?
You can add code by following these steps
Go to Online Store → Theme → Edit code.
Open your theme.liquid file
Paste the below code before on theme.liquid
my reply helpful? Click Like to let me know!
your question answered? Mark it as an Accepted Solution.
amazing, thanks so much!