Shopify themes, liquid, logos, and UX
We're moving the community! Starting July 7, the current community will be read-only for approx. 2 weeks. You can browse content, but posting will be temporarily unavailable. Learn more
Hi, I'm trying to make the image flush to the bottom edge of the row in Hero 2 columns row. It looks like it's currently either cropping or adding color over it...All of these row in the home page show a bar of the background row color under the images.
I was going to attach a visual file but it only accepts CSV and Flow??? No png...thats weird...
https://www.hatleynaturals.com/
Solved! Go to the solution
This is an accepted solution.
Hi @melanie-alex ,
I have written custom CSS for this solution. Please follow below steps and let me know your feedback.
Follow these Steps:
1) Go to Online Store
2) Edit Code
3) Find theme.liquid file
4) Add the following code just above tag </body>
<style>
.template-index div#shopify-section-1622958573cd44afd5 {
padding-bottom: 0px!important;
}
.template-index main#MainContent {
padding-top: 0px!important;
}
.shopify-section.index-section:has(.feature-row.hero-column-container) {
padding: 0;
}
</style>
If you require further help to optimize your store, please don’t hesitate to reach out. If you find this information useful, a Like would be greatly appreciated. And if this solves the problem, please Mark it as Solution!
Best Regards,
Makka
This is an accepted solution.
Hi @melanie-alex ,
I have written custom CSS for this solution. Please follow below steps and let me know your feedback.
Follow these Steps:
1) Go to Online Store
2) Edit Code
3) Find theme.liquid file
4) Add the following code just above tag </body>
<style>
.template-index div#shopify-section-1622958573cd44afd5 {
padding-bottom: 0px!important;
}
.template-index main#MainContent {
padding-top: 0px!important;
}
.shopify-section.index-section:has(.feature-row.hero-column-container) {
padding: 0;
}
</style>
If you require further help to optimize your store, please don’t hesitate to reach out. If you find this information useful, a Like would be greatly appreciated. And if this solves the problem, please Mark it as Solution!
Best Regards,
Makka
Do you mean removing the top and bottom padding of the hero column section? Like this?
If it is check this one.
.shopify-section.index-section:has(.feature-row.hero-column-container) {
padding: 0;
}
Your Feedback Matters! Please mark the solution and give likes to posts that helped you. Your appreciation fuels our motivation to assist you better!