Wednesday, June 22, 2011

Inline cascading stylesheets from drupal_add_css()

Drupal 6.x:

$color = variable_get('backgroundcolor', '#FFFFFF');
drupal_set_html_head("");

Drupal 7.x:
$color = variable_get('backgroundcolor', '#FFFFFF');
drupal_add_css("body {background-color: $color}", 'inline');

No comments:

Post a Comment