View Single Post
Old 12-21-2004, 12:18 PM   #2 (permalink)
sde
Moderator
 
sde's Avatar
 
Join Date: May 2002
Location: us.ca
Posts: 4,446
sde is on a distinguished road
is this page php? if so, you could do something like
PHP Code:
<?
if(strstr($_SERVER['HTTP_USER_AGENT'],"MSIE")){
  
// PRINT IE STUFF
}else{
  
// PRINT OTHER STUFF
}
?>
__________________
Mike
sde is offline   Reply With Quote