Welcome to the Question2Answer Q&A. There's also a demo if you just want to try it out.
+1 vote
203 views
in Plugins by
I want to show the sidebar content always visible when user scrolls down to the long webpages, I've seen this is many sites and is it possible to implement?

1 Answer

+1 vote
by

In your CSS add this:

html {
    overflow-y:scroll;
}

 

...