Can someone help me with positioning the text close to the images in multirow column. FYI I’m using Dawn Theme.
Topic summary
A user working with Shopify’s Dawn theme needed help positioning text closer to images in a multirow column section. They shared a screenshot showing the spacing issue and provided their store URL for troubleshooting.
Solutions Provided:
Multiple developers offered CSS-based fixes, all targeting the same core issue—reducing padding between images and text:
- Most solutions involved adding CSS code to reduce or remove
padding-topon.multicolumn-card__info - Suggested implementation locations varied:
base.css,section-multicolumn.css, or the theme’s Custom CSS section in the Customizer - One comprehensive solution included additional styling for flexbox alignment and spacing adjustments
Additional Request:
The user also asked about changing the currency symbol from “Rs.” to a different format for product pricing (not addressed in responses).
Outcome:
The issue was resolved. The user thanked all contributors, indicating the CSS solutions successfully fixed the text positioning problem.
Hello @srtasw ,
Could you please provide the URL/ password to your store so that I can check it and provide you with the exact solution?
Can you also help me with setting up the currency symbol instead of Rs. that is being shown for my products.
Hello @srtasw ,
Here are the steps to apply the necessary changes in your Shopify store:
- In your Shopify Admin, navigate to Online Store > Themes > Actions > Edit Code.
- Locate Asset > base.css and paste the following code at the bottom of the file:
.multicolumn-card.content-container {
display: flex;
flex-direction: column;
gap: 1rem;
align-items: center;
justify-content: center;
}
.media.media--transparent.media--circle {
display: flex;
align-items: center;
justify-content: center;
}
.background-none .multicolumn-card__image-wrapper+.multicolumn-card__info {
padding-top: 0 !important;
}
slider-component.slider-mobile-gutter {
margin-bottom: 5rem;
}
Note : Change the spacing values as per your requirements.
Let me know if you need further assistance!
Hi @srtasw
I hope you are well. You can follow our instructions below:
1/ Shopify admin > Online store > Customize: https://prnt.sc/XQ6IDB99kUCd
2/ From the left menu > Theme settings > Open Custom CSS: https://prnt.sc/iDxwa8zBQ4Z-
3/ Copy the code below and paste it there
Here is the code for Step 3:
.multicolumn-card__info {
padding-top: 0 !important;
}
Please let me know if it works. Thank you!
Best,
Daisy - Avada Support Team.
Hello @srtasw
Go to online store ----> themes ----> actions ----> edit code ----> assets ----> section-multicolumn.css
add this code at the end of the file and save.
.background-none .multicolumn-card__image-wrapper + .multicolumn-card__info {
padding-top: 0rem !important;
}
result
If this was helpful, hit the like button and accept the solution.
Thanks
Hi @srtasw
I hope this feedback will be helpful to you.
Please follow the following instructions:
- Go to Shopify > Theme > Customize: https://prnt.sc/Lc3MCyXpW8zw
- Copy and paste this code on Theme settings > Custom CSS section: https://prnt.sc/pmYP1ElPwdh7
.multicolumn-card__info {
padding-top: unset !important;
padding-bottom: 2.5rem;
}
Here is the result.
Best,
Liz - Avada Support Team.
Hello, @srtasw
- Go to Online Store
- Edit Code
- Find theme.css/base.css file
- Add the following code in the botto
.background-none .multicolumn-card__image-wrapper+.multicolumn-card__info {
padding-top: 0rem !important;
}
Thanks!



