VIP
want to remove black line in footer
A user wants to remove a black border line appearing in their Shopify store footer.
Problem Identification:
Proposed Solutions:
Multiple community members provided CSS-based fixes:
For the upper line: Add custom CSS via Theme Settings > Custom CSS:
.site-footer { border-top: none !important; }
For the lower line: Check the theme.liquid file for specific code segments and modify accordingly.
General approach: Edit the theme’s CSS file (base.css, style.css, or theme.css) in the Assets folder and add border removal code targeting .site-footer or specific footer div IDs.
Alternative method: Use the EasyEdits app for visual editing without coding (includes free trial).
One member referenced a similar resolved issue in another community thread. The discussion remains open pending confirmation of which line needs removal and whether any solution worked.
Hi EzelLondon,
First, go to theme and find to edit code. Then, find costume.css and remove this part:
.site-footer {
border-top: 1px solid #000000 !important;
}
Hi @EzelLondon ,
After reviewing the matter, we noticed that there are two black lines: https://prnt.sc/9I3SD86sFkiW
Could you please specify whether you are referring to the upper or lower one?
Step 1: Shopify admin > Online store > Customize: https://prnt.sc/XQ6IDB99kUCd
Step 2: From the left menu > Theme settings > Open Custom CSS: https://prnt.sc/ypQ7nly2wv27
Step 3: Copy the code below and paste it there
Here is the code for step 3:
footer.site-footer {
border-top: none !important;
}
Here is the result: https://prnt.sc/8DrqPsMuVIHC
Please let us know if you need any further clarification or assistance.
Best,
Daisy
Hello there @EzelLondon Another member of the community had a similar issue which appears to have been solved for them so I suggest you take a look at the solution here https://community.shopify.com/c/shopify-discussions/remove-black-line-in-footer-crave-theme/td-p/2849696 and let me know if it works for you
Hi @EzelLondon
Try this one.
div#shopify-section-sections--16663998300319__footer .site-footer {
border: 0 !important;
}
Your Feedback Matters! Please mark the solution and give likes to posts that helped you. Your appreciation fuels our motivation to assist you better!
Hey VIP! Removing that black line in your footer can be pretty simple, depending on your theme. Here are a couple of ways to do it:
div footer.site-footer {
border-top: none !important;
}
If you’re not comfortable messing with code, you can use EasyEdits to make these changes visually—no code required. You can edit your store during a free trial and keep your edits forever, even if you don’t stick with the app.
Let me know if you need more help! (P.S. I’m the developer of EasyEdits, so feel free to ask any questions about it.) ![]()