Quote (AndrewSTi @ 17 Sep 2013 12:31)
This suggestion is to assist the visually impaired with being able to enjoy the same borderstyles that other users get to enjoy.
I had PRK (eye surgery), which causes me to lose my near sightedness. Therefore I have to browse Jsp in a Zoomed manner.
I'd like to have a Large Font option added to the Settings, that will increase the font size of the forums, just like the default Big Font as shown here:
http://i.imgur.com/H1jSSfv.png
Unfortunately, with this option, we are only able to enjoy viewing the default blue. But with this add-on, we can enjoy using all of the borderstyles that everyone else uses.
The option would look like this:
http://i.imgur.com/Q6JpYFA.png
Now before everyone says "just use Zoom"- let me say that Zoom also affects all other tabs when I'm browsing.
It also becomes irritating have to switch it on and off as I go about my business.
So for instance, if I put Zoom to 150% so I can read Jsp, and I have other tabs open for say, Amazon, Amazon becomes zoomed in too; which becomes an eye-sore.
Thank you for your vote! 
Click on my signature and follow the same exact guide to install Tampermonkey on chrome or Firefox.
Then instead of the code in my topic, use this custom code for your site suggestion:
Code
// ==UserScript==
// @name D2jsp Custom Font Size
// @namespace http://d2jsp.org
// @version 0.1
// @description Stop wasting time by making site suggestions for Paul and d2jsp, you can do most of them by yourself!
// @match http://*.forums.d2jsp.org/*
// @copyright 2014+, d2jsp.org, HighschoolTurd
// @grant unsafeWindow
// ==/UserScript==
var style = document.createElement('style');
style.type = 'text/css';
style.innerHTML = '.cFont { font-size: 20px; } body, td, th, select, input, button, textarea { font-size:20px }';
document.getElementsByTagName('head')[0].appendChild(style);
document.body.className = 'cFont';
Change the "20px" to whatever value you feel comfortable with. These css selectors will grab mostly everything on d2jsp to increase the font.
Hope this helps.
This post was edited by HighschoolTurd on Sep 25 2014 05:43pm