With this code:

  <link rel="stylesheet" type="text/css" href="media/css/mobile.css" media="handheld"/>
  <link rel="stylesheet" type="text/css" href="media/css/screen.css" media="screen"/>

on my N78 the nokia's default browser and opera mini load screen.css instead of mobile.css.
What am I missing?

link|improve this question

72% accept rate
feedback

5 Answers

up vote 11 down vote accepted

Nokia N78 uses the S60 browser, which reads only "screen" stylesheets. It won't read the "handheld". It doesn't support media query. Instead of trying to type everything here, have a look at this article and you will solve the problem - http://www.alistapart.com/articles/return-of-the-mobile-stylesheet

link|improve this answer
feedback

Using the iPhone as an example:

<link media="only screen and (max-device-width: 480px)"
href="iPhone.css" type="text/css" rel="stylesheet" />

I have no idea which browsers/devices this does and does not work for. The only mobile device I've developed for is the iPhone. But I'm sure you can give it a shot with your nokia.

More on media queries

link|improve this answer
feedback

Opera Mini uses the media type screen because it fits its behavior and capabilities best. However, it will use handheld stylesheets if you switch to mobile view mode. See A developer’s look at Opera Mini 5 beta 2 for more information.

link|improve this answer
feedback

Please check, http://www.passani.it/gap/#SIMPLE_CSS

link|improve this answer
feedback

CSS provides an easy way to target browsers on different types of devices, or different uses. For example, the design you produce for a normal desktop browser may not be suitable for a handheld device, or a printer. These are known as media types. There are several media types, and most browsers will generally concentrate on just one or two, depending on what they are designed to be used for. Opera is by far the most versatile, and supports six different media types.

http://www.handycss.com/tips/media-types-in-css/

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.