diff --git noggin/noggin.module noggin/noggin.module
index d80545b..2b5697b 100644
--- noggin/noggin.module
+++ noggin/noggin.module
@@ -131,11 +131,11 @@ function noggin_theme_settings_submit($form, &$form_state) {
 function noggin_preprocess_page(&$vars) {
   if (variable_get('noggin:use_header', FALSE)) {
     $selector = variable_get('noggin:header_selector', 'div#header');
-    $extra_attributes = variable_get('noggin:attributes', NULL);
+    $extra_attributes = variable_get('noggin:extra_attributes', NULL);
 
     $path = variable_get('noggin:header_path');
     $public_uri = file_create_url($path);
     
-    drupal_add_css("$selector { background: url('$public_uri') $extra_attributes}", 'inline');
+    drupal_add_css("$selector { background: url('$public_uri'); $extra_attributes}", 'inline');
   }
 }
\ No newline at end of file
