Archived topic
Side Bar Sticky
6 replies · Started by Mike on May 28, 2020
Hello
Would it be possible to make the right side bar sticky for posts?
Example would be in my website url which has the function enabled for a diffrent theme
thank you
use Q2W3 Fixed Widget for WordPress its works best for me try it
Thanks Vara - thats a good plugin.
Alternative for just sticking the Right Sidebar you can use this CSS:
@media(min-width: 769px) {
#right-sidebar {
position: -webkit-sticky;
position: sticky;
top: 80px; /* Adjust value to increase space above */
}
}
awesome thank you both
quick question, is there a way to increase or customize the spacing at the beginning of the side bar when you scroll down?
would like a bigger gap there
thanks
You should be able to increase the top: 80px; CSS that David provided above :)
awesome thanks!
No problem :)