Tagged Questions

10
votes
6answers
3k views

What do you use to test the handheld css on your website?

I've been adding css support for handheld to my website but haven't been able to find a good tool for testing. I tried using the webdeveloper plugin for Firefox but it doesn't work for me. Maybe ...
6
votes
5answers
5k views

How to target the Blackberry browser?

I am using the following to target iphones, and handheld devices to use specific mobile styles sheets but the Blackberry browers is picking up only the regular screen style sheets. <link ...
4
votes
1answer
42 views

handheld css does not work properly

on my site i have 3 css <link rel="stylesheet" type="text/css" media="screen" href="screen.css" /> <link rel="stylesheet" type="text/css" media="print" href="print.css" /> <link ...
1
vote
1answer
213 views

Handheld stylesheet not used on my HTC

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 ...
1
vote
1answer
374 views

Scale Images within Slider for Mobile Devices

I am currently working on the mobile version of my website. I use the NivoSlider throughout the site and unfortunately it doesn't seem to scale for mobile devices. I have a mobile specific section of ...
1
vote
4answers
575 views

Is there a way to force IE or FF into a handheld mode for testing “@media handheld” stylesheets?

Is there a way to force IE or FF into a handheld mode for testing "@media handheld" stylesheets? Or, do I have to publish the pages and test with my Blackberry? I'd prefer to test this without ...
0
votes
1answer
75 views

Make a web application compatible with handheld

I'm developing a web app, with a full ajax ui using html, css and jquery as the js framework. All pages are developed for PC, but there are some pages that should work fine on Handheld (windows ce) as ...
0
votes
1answer
180 views

Apply different css based on device in asp.net?

I'm just starting to learn the basics of ASP.NET and have encountered a problem I don't know how to solve. I'm used to PHP and if I want a different css based on the device (Android or iPhone) used to ...
0
votes
2answers
152 views

Can a stylesheet for handhelds skip loading images

I have a stylesheet for desktops, and another for handhelds. The web page displays some images when displayed on the desktop, but hides those images when displayed on handhelds. The page appears as ...
-1
votes
3answers
78 views

Is it better to define css for all @media in one css file?

As this article suggesting http://www.456bereastreet.com/archive/201002/css_efficiency_tip_use_a_single_stylesheet_file_for_multiple_media/ or different external CSS for different media would be ...