Mainly? Support for them is good of course.
I bet vast majority of usage is still on a wide laptop or pc screen.
I'm sure, just as with GTP11, once the bugs are all ironed out with the normal version, Jordan will look into a widescreen option 👍
Yeah, would be good to have the option. Or as others have said, to change the width in the CSS, so it suits everybody. Just checked it out in Firebug and it looks great.
function addGlobalStyle(css) {
var head, style;
head = document.getElementsByTagName('head')[0];
if (!head) { return; }
style = document.createElement('style');
style.type = 'text/css';
style.innerHTML = css;
head.appendChild(style);
}
addGlobalStyle('.page-width { max-width: 1400px !important; }');
addGlobalStyle('.left-column { max-width: 930px !important; }');
You'd be surprised at the percentage of mobile traffic the site gets. I can't find the numbers right now, but I remember I was definitely shocked at how high it is. IIRC, it wasn't quite majority, but it was close.
You can, that is exactly what responsive web design is. It's just for whatever reason Jordan has chosen to set the max width at 980px.There is no "one size fits all" for mobile and desktop. You cannot design a site that will work equally for both. That's why even the largest sites in the world have two completely different versions for two completely different platforms.
So yes, give me back something to fill this HUGE amount of completely empty space I have on my screen now.