If i use
<?php
drupal_add_css(path_to_theme() .'/css/style.css');
drupal_add_css(path_to_theme() .'/css/ie8/style.css');
?>
Only the last item is rendered but the path are different.
If i use
<?php
drupal_add_css(path_to_theme() .'/css/style.css');
drupal_add_css(path_to_theme() .'/css/ie8/style.css');
?>
Only the last item is rendered but the path are different.