hello !
I am desperately trying to remove the grey line under ma header and cover image on my shopify website. I have try pretty much everything, can someone help me ? https://rituelle.store/ pw is neocla
A Shopify store owner is trying to remove an unwanted grey line appearing below the header and above the cover image on their site (rituelle.store).
Solutions Proposed:
Three community members offered CSS-based fixes:
<style> tag in theme.liquid file before the </body> tag to target the header border.header-wrapper--border-bottom { border-bottom: 0 !important; } to the theme’s CSS file (base.css, style.css, or theme.css).header and .shopify-section-header classes, removing both border-bottom and box-shadow properties using !important declarationsAll solutions involve accessing the theme code editor through Shopify Admin > Online Store > Themes > Edit Code.
New Issue:
After receiving help, the original poster reported a secondary problem: the hamburger menu icon is not displaying on mobile devices, requesting additional assistance for this issue.
hello !
I am desperately trying to remove the grey line under ma header and cover image on my shopify website. I have try pretty much everything, can someone help me ? https://rituelle.store/ pw is neocla
Hey @nesriri92
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 solve your problem then, don’t forget to Like it and Mark it as Solution!
Best Regards,
Moeed
Hi @nesriri92
Try this one.
.header-wrapper--border-bottom {
border-bottom: 0 !important;
}
Please don’t forget to Like and Mark Solution to the post that helped you. Thanks!
Hello @nesriri92
I checked your Shopify store at rituelle.store using the password neocla, and I see the thin grey line under the header and above the main image. This is likely a border-bottom or a box-shadow on the header or a wrapper div.
Here’s the easiest way to remove it:
. From your Shopify Admin, go to:
Online Store > Themes > Customize (on your current theme)
Click the three dots (···) in the top left > Edit code
In the theme files, open:
assets/base.css (or possibly theme.css, style.css, depending on your theme)
At the very bottom of that file, add the following CSS:
.header, .shopify-section-header {
border-bottom: none !important;
box-shadow: none !important;
}
What this does:
. Removes any border-bottom or box-shadow from the header and its wrapper (.shopify-section-header).
. The !important ensures it overrides any default styles.
Thank you ![]()
thank you so much for your help, I have another question, I don’t know why but my hamburger icon is not showing on mobile device
, the url is : https://8m19ef-i7.myshopify.com/ could you maybe help me ?