Hi,
I’ve put some work into CSS to make the Breadcrumb Bar look like a Destination Page. We have common camping locations and the bar is helping the user to know on which location he is right now.
Now I need it to be sticky. “Position: sticky” is not working. I think it could be because the menu is custom made from a developer.
Could you have a look and see how I can make it sticky?
It’s the bar “Wien Wienerwald” – it should stay like in the picture when I scroll down, but currently, it vanishes.
see below for Login
Thanks,
Stefan
Hey Stefan,
Thank you for the inquiry.
You can try this css code:
.responsive #main .container_wrap:first-child {
position: fixed;
top: 88px;
z-index: 999;
width: 100%;
}
It might require a few adjustments on mobile view.
Best regards,
Ismael
Thanks, it worked!