I’ve got a question about adding CSS to a custom module.
Originally I’ve been given this line:
link rel="stylesheet" type="text/css" media="screen and (max-width: 640px)" href="mobile.css"
And I’ve converted it into:
drupal_add_css(drupal_get_path('module', 'savingsscore') . '/css/mobile.css', 'screen and (max-width: 640px');
The file is being attached, but the media setting is wrong and I don’t know what it should be. I’m in Drupal 6.
Thanks!