For home page my header is transparent but for other pages it has white background which looks like given image:
But on scrolling from bottom to top the header looks like this:
How should i fix this?
Main issue: Header background behaves inconsistently—transparent on the home page, white on other pages; when scrolling from bottom to top, the header appearance breaks. Screenshots were shared to illustrate the visual bug.
Context: Store preview provided (misajewels.com, password: jewelsmisa) for troubleshooting.
Proposed fixes:
Current status: No confirmation that any fix resolved the issue. The latest guidance suggests targeting the header container directly in base.css and offers further testing if needed. Discussion remains open pending OP’s feedback or additional diagnostics.
For home page my header is transparent but for other pages it has white background which looks like given image:
But on scrolling from bottom to top the header looks like this:
How should i fix this?
Please share your store link to check
link - https://misajewels.com/
password - jewelsmisa
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 stylesheet.css
Step 3: Paste the below code at bottom of the file → Save
.header-wrapper * {
background: white !important;
}
In case the above code doesn’t work, can you send me the page URL so I can test it more carefully?
Hope that my solution works for you.
Best regards,
Henry | PageFly
Please add this code to your theme.liquid file after tag in Online store > Themes > Edit code
{% if template != 'index' %}
{% endif %}
it’s not working
link - https://misajewels.com/
password - jewelsmisa
You can try again 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
.header-wrapper {
background: white !important;
}