I've a website with special styles for mobile devices.
Since iPhone doesn't listen to media="handheld".
I'm using the following contruction with in a external stylesheet (loaded as media type 'screen') .
<link href="css/test.css" rel="stylesheet" type="text/css" media="screen">
This test.css contains this;
@media (min-device-width: 480px) {
... style iPhone ..
}
@media (max-device-width: 481px) {
.. style normal screen ...
}
This works on web browsers, but showing it in Contribute and even editing it Contribute. No styles are used!!
How to fix this. And which engine does Contribute (Dreamweaver) use to render it's contents?
Thank,
Pieter