Newspapers Can't Use Liquid Layouts... But Is It Good For The Web?

Posted October 25, 2006 at 8:43 AM

I've been seeing a lot of Liquid Page Layouts popping up lately. I have to say, I just don't get it. Maybe people just aren't doing it right, but it rarely makes my viewing experience any better. Point of fact, most of the time, I find a liquid page harder to read. Think about newspapers for a second. Do you ever see a newspaper have full-page (horizontal) columns? Never, not once. There's a reason for that: it's hard to handle the line breaks when you have to move your head/eyes back and forth so much. If you disagree with me, you disagree, but I think that's a widely accepted fact.

So what is it that makes people think this is so right for the web? Yeah, we all have different sized monitors, but so what? I have a luxurious 1280 x 1024 monitor, but that doesn't mean I want to read across 1280 pixels of text. Maybe it's because we are programmers, not designers. Maybe we just don't understand user interfaces? I don't know. All I can say is that from PERSONAL EXPERIENCE, viewing a 800 x 600 site on a 1280 x 1024 monitor is MUCH nicer than viewing a 1280 x 1024 site on a 1280 x 1024 monitor.

Of course, there are always exceptions to this. Some sites do this very well. Most sites do not.

Post Comment  |  Ask Ben  |  Print Page



Learning ColdFusion 9 - ColdFusion 9 tutorials, samples, examples, demos

Reader Comments

Oct 25, 2006 at 9:06 AM // reply »
1 Comments

In my opinion, the benefit of the liquid layout is that on that bigger monitor, you are able to resize the window to whatever it is that you prefer. With the fixed width, if I wanted the columns a little wider I would have no options..

my 2 cents..


Oct 25, 2006 at 9:11 AM // reply »
7,501 Comments

Mateo,

Point well taken. But, it still comes down to the ability to design. I think most sites are not designed well to function in a liquid fashion.


Oct 25, 2006 at 11:59 AM // reply »
3 Comments

I personally am not a big fan of liquid layouts. That said I do think liquid design elements can be well applied, examples being header and foot regions of a page. But this debate of designing for multiple screen sizes is about to get a 3rd dimension. Resolution Independence is coming ( http://www.appleinsider.com/article.php?id=2168 ) and it will mean that we have to worry about screen DPIs as well as resolution area.


Oct 25, 2006 at 12:01 PM // reply »
3 Comments

Its worth a mention the link i just posted is to a site that has a liquid layout too.


Oct 25, 2006 at 12:05 PM // reply »
7,501 Comments

Ryan,

Interesting. But the question then becomes, is resolution-independent rendering the design responsibility of the web developer? Or is it the display responsibility of the browser? I almost feel that it should be the browser's responsibility to scale web sites appropriately.

Very interesting indeed.


Oct 25, 2006 at 12:13 PM // reply »
3 Comments

Perhaps the responsibilty is shared. The browser can easly render non raster elements mathematically and leave no distortion. What about sites that contain 72dpi images or graphics on a 100dpi or greater display? Although i'm not sure what will end up happening I am certain it will be very interesting.


Oct 25, 2006 at 12:51 PM // reply »
7,501 Comments

I'm waiting for the dude in the corner to be like "Umm, excute me... Flash / Flex scales quite naturally."


Oct 31, 2006 at 7:40 AM // reply »
36 Comments

For me liquid layouts are another tool in the tool box. I always ask the designer how they want their design to look on different size moniters. Which things should expand, which shouldn't.

Often some sort of "jello layout" is needed where the design expands, but perhaps to some sort of limit.


Oct 31, 2006 at 9:35 AM // reply »
7,501 Comments

Steve, I agree, another tool in the tool belt is always a good thing. Just as long as it's done well.


Nov 1, 2006 at 8:58 AM // reply »
1 Comments

Text + Images + Liquid layout = Visual disaster


Feb 3, 2007 at 4:46 PM // reply »
165 Comments

I like sites which let you choose. E.g., default to a 1024x768 design, and let you switch to liquid using nothing more than JS/CSS.


Post Comment  |  Ask Ben

Recent Blog Comments
Mar 15, 2010 at 1:26 PM
Finding The Distance Between Latitude / Longitude Locations In ColdFusion
as i said, "routing". googlemaps work well enough, even here in thailand. if that's not good enough & you have better transport infrastructure data (which is probably the only reason it's not "good ... read »
Mar 15, 2010 at 1:25 PM
Muscle: Confessions Of An Unlikely Bodybuilder By Samuel Wilson Fussell
It's been interesting reading some of the comments on Sam's book. Like Ben, I really appreciated his literary take on the subject of bodybuilding and his reasons for wanting to something more than a ... read »
Mar 15, 2010 at 1:09 PM
Your jQuery Selector Context Can Be A jQuery Object
@Karl, Ah, gotcha; yes you are making sense :) ... read »
Mar 15, 2010 at 1:03 PM
Your jQuery Selector Context Can Be A jQuery Object
@Ben, Yeah. By default, .live() binds events to document and uses event delegation to see if $(event.target).closest(selector) exists before executing your function. As of jQuery 1.4, you can s ... read »
Mar 15, 2010 at 12:52 PM
Finding The Distance Between Latitude / Longitude Locations In ColdFusion
@PaulH, These calcs are fine for flying city-to-city type long distance but does not help too much for driving distances. Any thoughts on driving distance between two geopoints? ... read »
Mar 15, 2010 at 12:50 PM
Your jQuery Selector Context Can Be A jQuery Object
@Karl, Is this for when it uses delegation? ... read »
Mar 15, 2010 at 12:49 PM
Google Maps Not Working in Internet Explorer (IE)
@Ralph, thanks in advance for the look at: http://76.12.123.25/asia/map/ ... read »
Mar 15, 2010 at 12:48 PM
Your jQuery Selector Context Can Be A jQuery Object
There is one case in which you need a DOM node as the "context" argument: when you're using it for the .live() method. Otherwise, you're right. ... read »