Mude sua resolução de 800x600 para 1280x800, acesse um site de layout fixo, feito em pixels, e sinta a diferença. Pois é, nem todos enxergam bem. Mas o JS pode nos ajudar, veja:
<script type="text/javascript">
var min=8;
var max=18;
function FontBigger() {
var p = document.getElementsByTagName('p');
for(i=0;i<p.length;i++) {
if(p[i].style.fontSize) {
var s = parseInt(p[i].style.fontSize.replace("px",""));
} else {
var s = 12;
}
if(s!=max) {
s += 1;
}
p[i].style.fontSize = s+"px"
}
}
function FontSmaller() {
var p = document.getElementsByTagName('p');
for(i=0;i<p.length;i++) {
if(p[i].style.fontSize) {
var s = parseInt(p[i].style.fontSize.replace("px",""));
} else {
var s = 12;
}
if(s!=min) {
s -= 1;
}
p[i].style.fontSize = s+"px"
}
}
</script>
<a href="javascript:FontSmaller();">a </a>
<a href="javascript:FontBigger();"> A</a>