I’m using the following but it doesn’t work.
function changeFontSize(){
parent.frames['main'].document.body.style.fontSize = "150%";
}
I hope i wouldnt have to cycle through each element on the page and give it the font size like that because that will be very inefficient
Add the following to your css file:
* {font-size:150%}