Hi! I’m trying to make it so that when I scroll down, the transparent header shrinks and dissapears.
So far, i found this
.page-id-XX .header-scrolled {
display:none!important;
}
This works to an extent, but the white shrunken header flashed up briefly which looks messy. you can see what I mean here
Is there a way to fix this?
Thanks
Hey Swbride,
Try adding this css code:
.page-id-20 .av_header_shrinking {
display: none;
}
.page-id-20 .av_header_transparency {
display: block !important;
}
Hope this helps :)
Best regards,
Nikko
That’s exactly what I was after!
Thank you Nikko