Aller au contenu principal
loading

Add css in the template.php file / Ajouter une css dans le fichier template.php

POSTÉ DANS Drupal 7 TAGS Drupal 7 AUTEUR herve COMMENTAIRES 2

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