In your documentation, it says "6 Color Skins Alpine include 6 skins color version. You can create new one very easy. They have separate css files ". Would you explain how to do this? I added two skins, but they don't show up in the skins selection.
Thank you!!
Hi,
It's a bit difficult to make other skin color appear in theme settings
You can go to file md_alpine/inc/template.preprocess.inc
(about line 30)
and remove the following code:
if($skin != null) {
drupal_add_css($themepath . '/css/colors/'.$skin.'.css');
} else {
drupal_add_css($themepath . '/css/colors/blu.css');
}
and add this instead:
drupal_add_css($themepath . '/css/colors/your_skin.css');