Shopify themes, liquid, logos, and UX
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
Solved! Go to the solution
This is an accepted solution.
Hello @INFRA
You can add code by following these steps
1. Go to Online Store -> Theme -> Edit code.
2. Open your theme.liquid file
3. Paste the below code before </body> on theme.liquid
<style>
@media screen and (min-width: 990px){
.multicolumn.background-none .multicolumn-card {
display: flex;
align-items: center;
}
.background-none .multicolumn-list .multicolumn-card__info{
width: 70%;
}
.background-none .multicolumn-card__image-wrapper {
width: 30%;
}
}
</style>
my reply helpful? Click Like to let me know!
your question answered? Mark it as an Accepted Solution.
This is an accepted solution.
You can add code by following these steps
1. Go to Online Store -> Theme -> Edit code.
2. Open your theme.liquid file
3. Paste the below code before </body> on theme.liquid
<style>
@media screen and (max-width: 767px){
.multicolumn.background-none .multicolumn-card {
text-align: center !important;
}
.background-none .multicolumn-card-spacing {
margin: 0 auto !important;
}
}
</style>
my reply helpful? Click Like to let me know!
your question answered? Mark it as an Accepted Solution.
Hi @INFRA
1. In your Shopify Admin go to online store > themes > actions > edit code
2. Find Asset > base.css and paste this at the bottom of the file:
.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;
}
}
- Helpful? Like & Accept solution!
- Ryviu - Product Reviews & QA app: Collect customer reviews, import reviews from AliExpress, Amazon, Etsy, Walmart, Dhgate and CSV.
- Reton: Loyalty & Rewards - Earn points through tasks, redeem for discounts, and enjoy exclusive VIP rewards!
- 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.
This is an accepted solution.
Hello @INFRA
You can add code by following these steps
1. Go to Online Store -> Theme -> Edit code.
2. Open your theme.liquid file
3. Paste the below code before </body> on theme.liquid
<style>
@media screen and (min-width: 990px){
.multicolumn.background-none .multicolumn-card {
display: flex;
align-items: center;
}
.background-none .multicolumn-list .multicolumn-card__info{
width: 70%;
}
.background-none .multicolumn-card__image-wrapper {
width: 30%;
}
}
</style>
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?
This is an accepted solution.
You can add code by following these steps
1. Go to Online Store -> Theme -> Edit code.
2. Open your theme.liquid file
3. Paste the below code before </body> on theme.liquid
<style>
@media screen and (max-width: 767px){
.multicolumn.background-none .multicolumn-card {
text-align: center !important;
}
.background-none .multicolumn-card-spacing {
margin: 0 auto !important;
}
}
</style>
my reply helpful? Click Like to let me know!
your question answered? Mark it as an Accepted Solution.
amazing, thanks so much!
Discover how to increase customer engagement on your store with articles from Shopify A...
By Jacqui Apr 23, 2025Hey Community 👋 Did you know that March 15th is National Everything You Think Is W...
By JasonH Apr 1, 2025Discover how to increase the efficiency of commerce operations with Shopify Academy's l...
By Jacqui Mar 26, 2025