I am using the crave theme and would like to get rid of the black border on the slideshow container in the homepage. Either get rid of or just change the color to white. Any help?
Topic summary
A user working with Shopify’s Crave theme needed to remove or change the black border on the homepage slideshow container.
Solution Provided:
Multiple developers offered similar CSS-based solutions:
- Navigate to Online Store → Themes → Actions → Edit code
- Locate the
base.cssfile in the Assets folder - Add CSS code targeting
.slideshow__text.banner__boxwithborder: unset !important;orborder: none !important; - Paste the code at the bottom of the file before the closing
</body>tag (or in some cases, thetheme.liquidfile)
Outcome:
The issue was successfully resolved. The user confirmed that one of the provided solutions worked, removing the unwanted border from the slideshow.
Hi @HelloEolian ,
This is Anthony from Beae Landing Page Builder, and I’m happy to assist you today.
While I acknowledge that this issue falls short of the desired outcome, I have an idea that I believe might be of help:
- Go to Online Store → Theme → Edit code
- Open your theme.liquid file
- Paste below code before :
Best regards,
Anthony
Hello @HelloEolian
Its Artzen Technologies! We will be happy to help you today.
You can try to follow these steps:
Go to Online Store → Themes → Actions → Edit code.
Go Assets folder → theme.liquid file.
Add the following code in the bottom of the file above tag
Let me know if need further assistance
Regards,
Artzen Technologies
Hello There,
- 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:
.slideshow__text.banner__box {
border: unset;
}
Hi @HelloEolian
You can do that by adding this code to Custom CSS of that section
.slideshow__text.banner__box { border: none !important; }
Hi @HelloEolian
This is Henry from PageFly - Landing Page Builder App
You can try this code by following these steps:
Step 1: Go to Online Store->Theme->Edit code.
Step 2: Search file base.css
Step 3: Paste the below code at bottom of the file → Save
.slideshow__text {
border: unset !important;
}
Hope that my solution works for you.
Best regards,
Henry | PageFly
This worked! Thank you so much



