Home » Code, featured

How to resize Orkut so as to fit widescreen

28 August 2007 2 Comments

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 :

1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
// ==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

Related posts:

  1. Chrome Extension to Fix Orkut Width Problem Google has

1 Star2 Stars3 Stars4 Stars5 Stars (1 votes, average: 5.00 out of 5)
Loading ... Loading ...

2 Comments »