
June 18th, 2003, 02:44 AM
|
|
Contributing User
|
|
Join Date: Sep 2002
Location: Canberra, Australia
Posts: 348
  
Time spent in forums: 1 Day 34 m 44 sec
Reputation Power: 12
|
|
|
when inserting your CSS link use a different media type:
/* use this CSS if PDA */
<link rel="stylesheet" href="pda_style.css" media="handheld">
/* use this CSS if PC Browser */
<link rel="stylesheet" href="style.css" media="screen">
|