diff --git a/bamboo.info b/bamboo.info
index 36303af..95f670f 100644
--- a/bamboo.info
+++ b/bamboo.info
@@ -48,3 +48,4 @@ settings[body_font_style]  = sans_serif
 settings[theme_color_palette]  = green_bamboo
 settings[theme_bg]  = dark_linen
 settings[bamboo_tertiarymenu]  = 0
+settings[bamboo_localcss_location] = /your/location/to/local.css
diff --git a/template.php b/template.php
index cf62424..3515cc7 100644
--- a/template.php
+++ b/template.php
@@ -80,14 +80,23 @@ function bamboo_preprocess_html(&$vars) {
 
   // Use local.css if true.
   if (theme_get_setting('bamboo_localcss') == TRUE) {
-     drupal_add_css(path_to_theme() . '/css/local.css',
-      array(
+  		if (theme_get_setting('bamboo_localcss_location') == '') {
+  			     drupal_add_css(path_to_theme() . '/css/local.css', array(
+        'group' => CSS_THEME,
+        'media' => 'screen',
+        'preprocess' => TRUE,
+        'weight' => '9999',
+      	)
+    );
+   } else {
+   		drupal_add_css(theme_get_setting('bamboo_localcss_location'), array(
         'group' => CSS_THEME,
         'media' => 'screen',
         'preprocess' => TRUE,
         'weight' => '9999',
-      )
+      	)
     );
+   }
   }
 
   drupal_add_js(path_to_theme() . '/js/scripts.js',
diff --git a/theme-settings.php b/theme-settings.php
index ae46189..1ad45bc 100644
--- a/theme-settings.php
+++ b/theme-settings.php
@@ -109,13 +109,27 @@ function bamboo_form_system_theme_settings_alter(&$form, &$form_state) {
     '#collapsible' => TRUE,
     '#collapsed' => FALSE,
   );
-
-  $form['additional_settings']['other_settings']['bamboo_localcss'] = array(
+  
+  $form['additional_settings']['local_css'] = array(
+  	'#type' => 'fieldset',
+  	'#title' => t('Custom CSS Settings'),
+  	'#collapsible' => TRUE,
+  	'#Collapsed' => TRUE,
+  );
+  
+  $form['additional_settings']['local_css']['other_settings']['bamboo_localcss'] = array(
     '#type' => 'checkbox',
     '#title' => t('Use local.css?'),
     '#default_value' => theme_get_setting('bamboo_localcss', 'bamboo'),
     '#description' => t("Only check this box if you have renamed local.sample.css to local.css."),
   );
+  
+  $form['additional_settings']['local_css']['other_settings']['bamboo_localcss_location'] = array(
+  	'#type' => 'textfield',
+  	'#title' => t('Path to Local CSS'),
+  	'#default_value' => theme_get_setting('bamboo_localcss_location', 'bamboo'),
+  	'#description' => t('Specify a custom path to the local.css file: ex: sites/default/files/css/local.css'),
+  );
 
   $form['additional_settings']['other_settings']['bamboo_tertiarymenu'] = array(
     '#type' => 'checkbox',
