View Single Post
Posts: 18 | Thanked: 4 times | Joined on Jul 2008
#7
I use the following Greasemonkey script to increase only the font-size of web pages. Works perfectly for almost all sites, I hardly have to use the zoom level anymore since using this script.


Code:
"// ==UserScript==
//@name increase_font_nokia
//@include *

  var new_font_size = 'medium';
  var head = document.getElementsByTagName('head')[0];
  var style = document.createElement('style');
  style.type = 'text/css';
  style.innerHTML = '*,td {font-size:' + new_font_size + ';}';	
  if(style && head) head.appendChild(style);
 

The Following User Says Thank You to zwerfkat For This Useful Post: