I'm curious; how did you do that widget on the SO FAQ page, where the question sidebar scrolls up with the page until it reaches the window top, then stays put while the rest of the page continues to scroll?

share|improve this question
2  
This should be on stack overflow with the stackoverflow.com tag – Anish Gupta Jul 3 '12 at 12:45

closed as off topic by Michael Petrotta, Mat, Manishearth, Matt, jadarnel27 Jul 3 '12 at 13:23

Questions on Meta Stack Overflow are expected to generally relate to the Stack Exchange family of websites and/or community in some way, within the scope defined in the faq.

1 Answer

This menu is warped with a div, starting with parameters position:relative. This div is positioned on the right place using the rest struct of the page.

Now a script runs and when the top of this div is getting out of the screen this div get the style position:fixed;bottom:0px. This now make it stay as you see, at the same fixed position.

You can call that floating menu, and I have found and use in the past relative to that style here : http://www.dynamicdrive.com/dynamicindex1/staticmenu.htm

share|improve this answer

You must log in to answer this question.

Not the answer you're looking for? Browse other questions tagged