Create advanced headers

Dear admin

I want to create advanced header. This is almost impossible to do with other themes.
I create 2 Rows. Main row and Sub row. I want every time I scroll down to have only sub row stick. Every time I scroll up the Main row appears. Can we do this?

Thank you !



Hi,

It might be a bit late but I found out some short CSS for this (while trying to hide the topbar on scroll):

.cc-scrolld-down[data-cc-scroll-action=downSlideUp]:not(.cc-scrolld-top-offset) {
    transform: translateY(calc(-100% + 80px));
}

Simply replace 80px by your top-bar height :slight_smile: