have a Web site that I want to be able to be used by people who go on the Internet on their phones or PDAs. My site looks fine on both when the CSS style sheets are turned off, but not so great when they are on. Any code that I can put in site to make them automatically turn off for mobile devices?
With that media attribute that Gary mentions, you have; Media type 'screen', which are usually computer monitors or other high res devices. <link rel="stylesheet" type="text/css" media="screen" href="/stylesheets/base.css" /> Print for printers <link rel="stylesheet" type="text/css" media="print" href="/stylesheets/print.css" /> Others listed here: http://www.w3.org/TR/REC-CSS2/media.html#media-types