I'm using

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

To include an alternate stylesheet for mobile devices. But it seems that the stylesheet is not being loaded at all on my HTC. Why is this? And more importantly, how do I make sure my mobile stylesheet is loaded on all handhelds?

You can view the live website here: www.webvalid.nl/thomas

Thanks in advance!

link|improve this question

feedback

1 Answer

up vote 2 down vote accepted

I'd recommend using the CSS3 @media screen and (max-width: ###px) media queries as documented nicely at http://webdesignerwall.com/tutorials/css3-media-queries

All HTC (Android ones, anyway) and iPhone browsers support this, as far as I know, due to their good CSS3 support.

link|improve this answer
Works as a charm! – Thomas Jun 18 '11 at 11:05
feedback

Your Answer

 
or
required, but never shown

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