Hello, I have a issue with some values that I'm getting with hook_form_system_theme_settings_alter. The point is this:
with this hook, I want to create a color picker with: $form['color'] = array(
'#type' => 'color',
'#title' => t('Color'),
'#default_value' => '#ffffff',
'#description' => t("choose a color")
);
}
then, on the admin panel, the admin introduce the value of the color in HEX.
In a php file, I can obtain the color value with this:
I'm currently tuning a custom theme based on bootstrap.
My issue is that header zone is always at least 1px height, even if empty. You'll see it here https://pit68.be/drpl/recherche just between banner at content.
I enabled theme debug on my drupal 7 installation using drush vset theme_debug 1, But Now I can't disable theme debug using drush vset theme_debug 0, What the wrong, Is there any wrong or typo mistake in the drush command above?
I also tried to comment out $conf['theme_debug'] = TRUE; in the settings.php and then replaced with $conf['theme_debug'] = FALSE; but none works.