Ah just a little syntax error... finally got the basic part of this going:
Quote:
|
document.getElementById('test').style.font-size=20px;
|
should be:
document.getElementById('test').style.fontSize='20 px';
and that changes it. But for some reason it doesn't work in tables, like if I have the <div id="bla"> before the table I want to be enlarged, and the </div> tag after, it doesn't change the table at all....