Hello, I am working with the following web alimenticiasdelplata.com.uy/collections/yerba-libre , I have been trying to eliminate the black bottom and upper border in the collection banner. Anyone can please help me solve the mystery? Thank you ![]()
Hey @blancavaldes
Follow these Steps:
-
Go to Online Store
-
Edit Code
-
Find theme.liquid file
-
Add the following code in the bottom of the file above tag
RESULT:
If I managed to help you then, don’t forget to Like it and Mark it as Solution!
Best Regards,
Moeed
Try this one.
- From your Shopify admin dashboard, click on “Online Store” and then “Themes”.
- Find the theme that you want to edit and click on “Actions” and then “Edit code”.
- In the “Assets” folder, click on “base.css, style.css or theme.css” file, depending on which file your theme uses to store its CSS styles. At the bottom of the file, add the following CSS code:
@media screen and (min-width: 750px) {
.collection-hero.collection-hero--with-image {
padding: 0 !important;
}
}
@media screen and (max-width: 749px) {
.collection-hero--with-image .collection-hero__inner {
padding-bottom: 0 !important ;
}
}
-
And Save.
-
Result:
Your Feedback Matters! Please mark the solution and give likes to posts that helped you. Your appreciation fuels our motivation to assist you better!
Hello @blancavaldes
Go to online store ----> themes ----> actions ----> edit code ---->base.css
add this code at the end of the file and save.
body, .color-background-1, .color-background-2, .color-inverse, .color-accent-1, .color-accent-2 {
background-color: #fff !important;
}
result
If this was helpful, hit the like button and accept the solution.
Thanks
Hello @blancavaldes
- In your Shopify Admin go to online store > themes > actions > edit code
- Find Asset > base.css and paste this at the bottom of the file:
.collection-hero.collection-hero--with-image {
padding: 0!important;
}



