View Single Post
  #99  
Old 08-15-2008, 05:22 PM
DrakilorP2P DrakilorP2P is offline
Registered User
DrakilorP2P's Avatar
Join Date: Apr 2006
Posts: 755
DrakilorP2P is just really niceDrakilorP2P is just really nice
Quote:
Originally Posted by Door View Post
Can you make it in rainbow?
PHP Code:
// ==UserScript==
// @name           OGCC
// @namespace      http://forums.graalonline.com/
// @description    Changes background color of posts.
// @include        http://forums.graalonline.com/*
// ==/UserScript==

window.addEventListener(
    
"load",
    function() {
        for (
i=0i<document.styleSheets[0].cssRules.lengthi++)
        {
            
foo document.styleSheets[0].cssRules[i];
            if (
foo.selectorText == ".alt1, .alt1Active") {
               
//foo.style.backgroundColor = "#ccddcc";
               
foo.style.background "url(http://img98.imageshack.us/img98/1931/flagtu7.gif)";
            }
        }
    },
    
true); 
Attached Thumbnails
Click image for larger version

Name:	yeah.png
Views:	225
Size:	3.9 KB
ID:	45600