On Fri, Jan 29, 2010 at 1:08 AM, Dave Crozier <[email protected]> wrote: > Malcolm, > If it is like the iPhone then it is really irrelevant as the whole page is > rendered and sized accordingly, hence the ability to "pinch zoom". The > OS/Safari browser will size the web page to automatically fit the screen > real estate available. > ------------------
<!--look to CSS Media queries for dynamic swap of CSS --> <link media="screen and (min-device-width:481px)" href="card-screen.css" type="text/css" rel="stylesheet"> <link media="screen and (max-device-width:480px)" // catch if an iphone and sub in the css for the iPhone this way. href="card-iphone.css" type="text/css" rel="stylesheet"> There will be a window size for the iPad just as there is for the iPhone. You just adjust the Stylesheet you use by the size of the browser. This is from notes off of an webinar earlier this month. Once you have the proper css file to use it is much easier to define your presentation. The content stays the same, you just have to adapt to how is looks. -- Stephen Russell Sr. Production Systems Programmer SQL Server DBA Web and Winform Development Independent Contractor Memphis TN 901.246-0159 _______________________________________________ Post Messages to: [email protected] Subscription Maintenance: http://leafe.com/mailman/listinfo/profox OT-free version of this list: http://leafe.com/mailman/listinfo/profoxtech Searchable Archive: http://leafe.com/archives/search/profox This message: http://leafe.com/archives/byMID/profox/[email protected] ** All postings, unless explicitly stated otherwise, are the opinions of the author, and do not constitute legal or medical advice. This statement is added to the messages for those lawyers who are too stupid to see the obvious.

