Archived topic
Sticky sidebar
5 replies · Started by Gevorg on February 10, 2020
Hi David,
Is there a way to get the search box in the right sidebar sticky as well? Right now it is above an image in a textbox and scrolls up and only the textbox is sticky.
Hi there,
looks like the search bar is just hidden behind the sticky navigation.
In Customizer > Additional CSS you have this:
@media (min-width: 769px) {
#right-sidebar {
position: -webkit-sticky;
position: sticky;
top: 0;
}
}
try changing the top: 0; to top: 60px;
Yes, I got that code from your reply in a previous thread. Is there a way to bring the search bar up?
You just need to change the CSS as mention above - so swap it for this:
@media (min-width: 769px) {
#right-sidebar {
position: -webkit-sticky;
position: sticky;
top: 60px;
}
}
Thank you, that was great!
You're welcome