Hello,

Based on the Fusion starter Theme, I have created a subtheme for 24-column 960 grid following the doc here and here.

(If you have the same need, you can find my CSS file named grid24-960.css attached below)

After that I have a structure like this:

fusion_ivi/ (name of the sub theme)
    ----fusion_ivi.info
    ----css/
          ----fusion-ivi-style.css
          ----grid24-960.css
    ----skins/
          ----24cols/ (name of the skin)
                ----24cols.inc

The subtheme setting(admin/appearance/settings/fusion_ivi) is working fine, however, the "24cols" skin is not showing in the Appearance>Fusion Accelerator>Skin Library (screenshot attached).

Since no similar issue has been found on the internet, I resort to this place for a help.
Have you any idea about what is going wrong? Thank you in advance.

CommentFileSizeAuthor
2012-09-05_183855.jpg240.28 KBkers
2012-09-05_184656.jpg95.21 KBkers
24cols.zip741 byteskers
fusion_ivi.zip2.42 KBkers
grid24-960.zip626 byteskers

Comments

kers’s picture

Issue summary: View changes

URL link fix

kers’s picture

Status: Active » Closed (fixed)

I finally figured out what is going on. Actually, in the 24cols.inc file, the skin group code section should be clarified too !

/**
 * Implements hook_fusion_apply_group_PLUGIN_info().
 */
function fusion_ivi_fusion_apply_group_24cols_info() {
  $groups['fusion_ivi_skins'] = array(
    'title' => t('my Skins'),
    'description' => t('my skins'),
    'weight' => -15,
  );  

  return $groups;
}

However, this step has not been mentioned in the documentation which i think is very necessary.

kers’s picture

Issue summary: View changes

typing mistakes