Re: [PHP] text only and text sizer

2006-11-27 Thread Paul Novitski
At 11/27/2006 02:11 PM, Ross wrote: $text_only = isset($_GET['text_only']) ? $_GET['text_only'] : 1; if ($text_only==1) { ?> off // import css here on // import css here I'd begin by simplifying the logic and separating it from the HTML: $text_only = isset($_GET['text_only']) ? $_GET['te

[PHP] text only and text sizer

2006-11-27 Thread Ross
$text_only = isset($_GET['text_only']) ? $_GET['text_only'] : 1; if ($text_only==1) { ?> off // import css here on // import css here secondly the text size links A A A these work great independently but when I use one the other switches off. any ideas how I can combine them?