vote up 1 vote down star

How do I freeze the top section of a MasterPage so that the menu doesn't scroll off the screen?

flag

3 Answers

vote up 1 vote down check

If you want to support more browsers, you can also look at the AlwaysVisibleControl which comes with the free ASP.NET Ajax Toolkit

link|flag
wow, that's really cool thanks. – Billy Mar 13 at 19:49
I tried it and it's cool, but theres sort of a delayed effect where it catches up. I was hoping for something similar to the bar at the top of this page that tells me I have 1 new answer. – Billy Mar 13 at 21:36
The delay is because in older browsers, it's using Javascript to handle the scroll event. You will not see the delay in newer browsers, so those users will have a slightly better experience. If you see a bar on this page, you could view source, or use firebug to find out how SO is doing it ;-) – Travis Collins Mar 13 at 23:53
vote up 6 vote down

CSS Fixed Header Layout

link|flag
vote up 1 vote down

You can used the position:fixed css style, but this only works with modern browsers (FF3, IE7). If you want to support older browsers you have to get more creative, using Javascript and such.

link|flag
yeah we have old browsers here - ie6 – Billy Mar 13 at 19:49

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.