yes very clear. 🙂
ok i see what you mean but wouldnt it be easier if you just made a few text classes in your css file? like
.text {font: 11px Verdana, Arial, sans-serif;}
.textzoom {font: 16px Verdana, Arial, sans-serif;}
so then you could use a control structure which desides how big the text will be
like
<?
switch ($_GET['textsize']) {
case 1:
$text_class = 'text';
break;
case 2:
$text_class = 'textzoom';
break;
}
?>
<p class="<? echo $text_class ?>"this is resizable text!</p>