My blog has moved!

You should be automatically redirected in 6 seconds. If not, visit
http://www.gauravv.com
and update your bookmarks.

Gaurav verma

Wednesday, August 29, 2007

How to resize Orkut so as to fit widescreen

Orkut has changed their design recently...


But,you have a widescreen monitor and orkut's new design doesn't look good on it.what you want to have is this



here is the solution for your problem .Just follow these steps one by one :

Thats it ...now browse orkut.com and whole content should be resized to 99% of your screeen automatically.

for those of you who want to look at the script :

// ==UserScript==
// @name Orkut 99% width
// @namespace http://gverma.blogspot.com
// @description converts orkut container width to 99% ,useful for users having widescreen
// @include http://www.orkut.com
// ==/UserScript==
(function() {
function do_widen(id, min) {
var container = document.getElementById(id);
if (!container)
return;
if (min)
container.style.minWidth = min;
}
try {
do_widen("headerin", "99%");
do_widen("container", "99%");
} catch (e) {
GM_log( 'Orkut99percent exception: ' + e );
//alert(e);
}

})();



If you have any comment post it on http://userscripts.org/scripts/show/11782

Labels: , ,

1 Comments:

  • Hi...

    I have linked to your post here :
    http://orkutunderworld.blogspot.com/2007/09/how-to-resize-orkut-so-as-to-fit.html

    This is a great trick you have got here...
    If you ever made a new trick..you can always tell me that...I wuold link it to your Blog !!

    By Anonymous Anonymous, at 2:38 AM  

Post a Comment

<< Home