When will SO stop wasting real estate of my screen by having static width layout?
EDIT
It would be very interesting to hear how does Joel, being UI specialist, feel about this. JoelOnSoftware site has fluid layout...
|
When will SO stop wasting real estate of my screen by having static width layout? EDIT It would be very interesting to hear how does Joel, being UI specialist, feel about this. JoelOnSoftware site has fluid layout... |
|||||||
|
|
While I completely agree it's a pain, there is one advantage of having a fixed width: when I reformat code to make sure it doesn't scroll horizontally, I can be reasonably confident it will be displayed properly for all users. Scrolling code horizontally is a horrible experience. Arguably a vertical line overlay showing 80 columns (or something similar) would be nice - if it would be feasible in the first place. Then users who care could format code appropriately but still take advantage of a wide screen. |
|||||||||
|
|
I loathe fixed width because I have a 24" wide screen 1920x1200 monitor, and tend to have wide windows in firefox to fit more tabs without scrolling, even my terminal windows typically have at least 132 columns - great for grepping or tailing log files. I tend to make my windows about two thirds of the screen width, so i can see what's going on in other windows and easily cut-and-paste between them. anyway, on fixed width web sites that means a huge expanse of white glare with a narrow page of content in the middle. ++ungood. my solution is to use the Stylish plugin for Firefox and make up little CSS override fragments that disable fixed width settings, font-size settings, and other hard-coding horrors. The Firebug plugin is useful for doing this interactively to figure out what needs to be done in Stylish. IMO, web designers who develop like that are missing one of the most important points about the web - the correct way to render a page is however the user wants it to be rendered. that's always more important than their grand design, no matter how beautiful they think it is.
|
|||||||||||
|
|
I like fixed width. This is especially useful for someone like me who goes between multiple monitor sizes between home and work and I don't have to let my eyes wander to find what I want to find. With a fixed with I know it is going to look the same regardless of what monitor and resolution I am using (to a degree). |
|||||
|
|
I am using single monitor at 1920x1200 at work, more or less 50% of SO is white. I definitely vote to have an option that you can set in your profile/cookie to have fluid layout |
|||||||||||||||
|
|
The primary designs are all based around a fixed layout; reworking them is not feasible. This certainly doesn't preclude the use of fluid layouts for other designs. For instance, mobile practically demands a more fluid display. And since the underlying data is all public and fairly easy to access, you could always write your own UI similar to how Stack Printer does it. |
|||
|
|
|
It'd be nice if a compromise could be created, like Google News or Microsoft's homepage, where the formatting can be optomized for various screen sizes. Not a true flow-layout, but users with wide screens and users with narrow screens could each be accommodated. They're not that hard to create. I've created a few myself using a bit of jQuery and CSS Selectors. I've also seem some great examples using HTML 5 data attributes and attribute selectors, though backwards compatibility can be an issue. Example:
|
|||
|
|