
Originally Posted by
Antimus
even after editting my old greasemonkey image resizer script to FHC's new address, it's not working anymore.
Need image resizer! preferably the one that toggles the image size when you click on it

thx
Content (Of the very best kind):
[img]Mrs%20Coffey[/img]
Code:
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('td.row1 img,td.row2 img, .postbody img { max-width: 800px !important;}');
addGlobalStyle('span.postdetails img { max-width: 150px !important;}');
that should satisfy your immediate needs, for the rest there's rightclick
Bookmarks