By WCityMike
Has 10 other scripts.
// ==UserScript==
// @name Increase Text Size of Remember The Milk Print Views
// @namespace http://*.rememberthemilk.com/print/*
// @include http://*.rememberthemilk.com/print/*
// @include http://*.rememberthemilk.com/printplanner/*
// @description This is a wholesale ripoff from "Clean up Remember The Milk Print Views" at http://userscripts.org/scripts/show/13358, but the CSS has been modified so that the font size is greatly increased for readability, and the results are not columnized.
// ==/UserScript==
var css = "body{margin:0;padding:0;font-size:1.30em !important;}br{display:none}#printheaderlogo{display:none}div div h1{margin:0;font-size:2em}div h1{clear:both}ul{clear:both;padding-top:20px}#content{margin:0}";
if (typeof GM_addStyle != "undefined") {
GM_addStyle(css);
} else if (typeof addStyle != "undefined") {
addStyle(css);
} else {
var heads = document.getElementsByTagName("head");
if (heads.length > 0) {
var node = document.createElement("style");
node.type = "text/css";
node.appendChild(document.createTextNode(css));
heads[0].appendChild(node);
}
}