MY website header is transparent but when i scroll down its also transparent i want to add color on header background only when i scroll
Hi @learning12
You can add this code to Custom CSS in Sales channels > Online Store > Themes > Customize > Theme settings to change the background color of your header when scrolling down.
.header-wrapper {
transition: background 0.25s ease;
}
.scrolled-past-header .header-wrapper {
background: #fff;
}
Replace #fff with your hex color code.