Having trouble using drupal_add_css
with template_preprocess_page
? Make sure you refresh the $variables['styles']
array:
function template_preprocess_page(&$variables) {
drupal_add_css('path/to/style.css');
$variables['styles'] = drupal_get_css();
}
2 commentaire