Hi, I recently got an issue in header that there is some small bleeding where all the contents are visible when scrolling the website. I want to hide it.
I’ll attach the image and website link for your reference.
Thanks in advance
A user is experiencing a visual issue where header content becomes visible (“bleeds through”) when scrolling the website. They’ve provided a screenshot showing the problem.
Proposed Solution:
base.css file.sticky-header {
margin-top: -1px !important;
}
This negative margin adjustment should hide the bleeding effect by slightly repositioning the sticky header element. The discussion appears to be awaiting confirmation on whether this solution resolves the issue.
Hi, I recently got an issue in header that there is some small bleeding where all the contents are visible when scrolling the website. I want to hide it.
I’ll attach the image and website link for your reference.
Thanks in advance
Hello @Sivadarshan ,
Follow these steps:
Go to Online Store → Theme → Edit code
Open your base.css file and paste the following code at the bottom:
sticky-header {
margin-top: -1px !important;
}
Thanks