- Jun 24, 2006
- 6,442
- 1
- 81
I'm more looking for the optimal width of a webpage.
960 wide is a standard now but research is showing that the vertical height is relatively irrevelant -- the idea of the fold doesn't apply to online media.
960px wide is good because it protects for monitors/browsers that are only 1024px wide and it breaks down into grids/columns wonderfully.
800x600? Yeah, I guess for a mobile site.![]()
with a mobile site you're better off using a fluid width.
Which means?
html, body
{
width:100%;
}
this, fucking this!!!!
the fold is DEAD and I never want to hear about it again!
I had to Google 'the fold web design' and find this page to understand what the hell you meant by that. Thanks!
the fold is DEAD and I never want to hear about it again!
Most websites these days are designed for 1024x768.
I do not like dynamic sites, things just do not fit together on every resolution like they should
What is this fold your talking about?
960 wide sounds good to me - not so wide that it breaks the frame of a 1024 resolution. I usually set my sites to around 800 - 1000 wide.
it means you're setting the width of an element to a percentage of the parent element, in case of the first element this would be availabe space in the browser window (screen res minus browser chrome).
you seem like a novice so I'll just post the css for it
Code:html, body { width:100%; }
that will set the <body> element to a width of 100% of the available space in the browser window.
Dynamic?
Otherwise, about 1024 pixels wide is good. Nobody should be using less than that.
Dynamic only. Not everybody wants to browse with a maximized window.
