In Excel, the window can be frozen in place in such a way that you can always see the name of the column even though you go way down below the 'fold' of the screen.

On SE, when you scroll, the whole page goes up (or down). This means the top navigation bar is scrolled off screen. I'm not sure if it would be a good idea or not to fix the top navigation to the top of the screen and let the rest of the content scroll.

What do you think about this, in terms of pros and cons?

share|improve this question
3  
There's a script that does this, Stackoverflow.com Enhancer – Michael Mrozek Aug 8 '11 at 22:51
1  
That script doesn't work on IE, why we need a script? why it is not part of SO? this absolutely common in many websites. – user185178 May 6 '12 at 7:14
10  
Because it's mostly obnoxious. The focus is on questions and answers. That bar just takes up space and gets in the way of seeing them. – Cody Gray May 6 '12 at 8:02
1  
Every application is focused on what is shown in the main UI area. This is a void argument. Then let's remove the browser toolbars as well... The existence of the Enhacer script demonstrates that many users prefer the app bar frozen. – user185178 May 7 '12 at 2:13
8  
@user Stack overflow is a website. It is not an application. It should behave like a website, and that means never grabbing part of my screen and pretending that it owns it. – dmckee May 14 '12 at 23:08
2  
You've asked the question in the right place, but I don't feel the feature has a lot of value. For one, it's fairly easy to navigate to the top of the page without manually scrolling (e.g. on my Mac it's just Cmd+UpArrow, and I'm sure on Windows it can be done in a similar way). Second, I have yet come across one of these "sticky" elements that hasn't been absolutely annoying. Can you point to one that works well? – Aaron Bertrand Aug 3 '12 at 19:33
@AaronBertrand Couldn't be easier on Windows: I just press Home. More for devil's advocate purposes than anything else, I will point out that the "action bar" on the new /review page (the one with the "accept," "close" and "not sure" buttons) is sticky. It doesn't come into play very often because mosts posts aren't that long. Or maybe it does, and I just can't tell because I orient my monitor vertically. – Popular Demand Aug 3 '12 at 19:40
I'm sure this could be easily done with a userscript / user style sheet for those who really want it – Pekka 웃 Aug 3 '12 at 19:43
2  
@Pekka: Indeed it can be – eldarerathis Aug 3 '12 at 19:48
1  
@Pekka this wont need a script, it can easly done with css. just need to be that element's css; position:fixed and top:0 – Barlas Aug 3 '12 at 19:52
And also many useful answers (keyboard shortcuts) at Toolbar with floating position. – Arjan Aug 3 '12 at 19:54

5 Answers

up vote 9 down vote accepted

I myself use the following home-brewed User stylesheet (in conjunction with Stylish). I don't need the whole bar to stick to the top, only the StackExchange™ MultiCollider SuperDropdown™, for inbox messages.

@namespace url(http://www.w3.org/1999/xhtml);

@-moz-document domain('stackoverflow.com'),
               domain('stackexchange.com'),
               domain('superuser.com'),
               domain('serverfault.com'),
               domain('stackapps.com'),
               domain('askubuntu.com') {
  #portalLink {
      position: fixed;
      background-color: #EEE !important;
      padding: 8px 6px 6px 16px !important;
      margin: -2px 0 0 -22px !important;
      border-radius: 5px;
  }
}
@-moz-document url-prefix('http://stackexchange.com/') {
    #portalLink {
        background-image: -moz-element(#topBar) !important;
    }
}

#EEE is the grey-ish background color of the Stack Overflow bar. For the Stack Exchange main site, I've used a different method to have the same background: -moz-element. This eliminates the need for hard-coding colours.

Here's how it looks like (notice the StackExchange box at the top of the page):
screenshot

share|improve this answer

(IMHO) I think it's not the best idea... It just adds noise/clutter when you don't need it whilst you've scrolled to view Question/Answer content. It's easy enough to get back to the top anyway.

As Michael Mrozek pointed out, there is an add-on that provides this functionality which after reviewing only confirms to me that I would not want such a feature... But at least it is an option for people who do want that — I can see why it would be useful, just that I'd want a clearer picture when scrolling.

share|improve this answer
1  
Thanks for the answer. Any idea why this question was downvoted??? – GUI Junkie Aug 9 '11 at 7:05
3  
@GUI junkie, likely because people disagreed...voting is different on meta – davidsleeps Aug 9 '11 at 9:51
how 20-30 pixels in height add more clutter? then a toolbar in all website add more clutter? toolbar are there to be accessed at any time by the user, whithough having to scroll. – user185178 May 6 '12 at 7:16
1  
@JaimeOlivares By taking away 20-30 pixels of page space that doesn't really change. The toolbar has useful things sure, but nothing that really changes why you are on a particular page... – davidsleeps May 6 '12 at 22:55
That's exactly why the toolbar is there. It shows you information of the global context, not of the current page. If it doesn't belong to the current page, it should not scroll. This is UI Design 101. – user185178 May 7 '12 at 2:06
Moreover, there is no point in having a notification control (incoming emails) when the notification area won't be always visible. – user185178 May 7 '12 at 10:47
@JaimeOlivares It might have changed, but the notification bar does not change whilst viewing a page. You couldn't just leave it open and receive notifications...(this may have changed though)... – davidsleeps May 7 '12 at 22:21
@davidsleeps: It changed :) – minitech Sep 11 '12 at 23:30

Show of hands: How many people loathe headers and footers that follow you around as you scroll?

The header isn't even that useful when you're reading a long page, and you can always press Home to warp to the top.

share|improve this answer
1  
mate its just got 33px height. – Barlas Aug 3 '12 at 19:42
12  
It would still bug me at 5px in height. – Toomai Aug 3 '12 at 19:43
   
@barlasapaydin why do you think the height is the part that people find annoying? – Aaron Bertrand Aug 3 '12 at 19:43
okey, whatever, it was just a suggestion. – Barlas Aug 3 '12 at 19:47

Although this feature isn't built in (and I understand why people dislike it) there's actually a userscript that does this that you can use instead. It's not 100% bulletproof, but in general it'll work. Actually, it turns out there's a second one as well.

share|improve this answer
lol i discover there is an userscripts for stack websites (: thanks. – Barlas Aug 3 '12 at 19:57
interesting, i might want to find/write one that does this for the voting arrows – ajax333221 Aug 3 '12 at 20:13

A frozen top bar would be great. It really sucks right now having to scroll back up every time you dive into a question. I work a lot in Excel and any kind of heavy spreadsheet work usually involves freezing the top row (or leftmost column).

It would make the site more efficient and usable, thereby giving more time to process Q & A.

share|improve this answer

You must log in to answer this question.

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