Hi,

I have created a subtheme of touchpro as you did it in your starterkit. Now I want to fill in my own css-additions to this theme. I can see there is a subtheme.css in your example, but using this file has no consequences at all.

So how can I add some css-styles by my own?

cheers

Comments

MatthijsG’s picture

Issue summary: View changes

Late answer, but i had the same problem.

Rename the css like your subtheme-name (eg. replace subtheme everywhere for your 'foobar')

Add to template PHP

drupal_add_css(
$theme_path . '/YOURSUBTHEMECSSFILE.css', array(
'preprocess' => variable_get('preprocess_css', '') == 1 ? TRUE : FALSE,
'group' => CSS_THEME,
'media' => 'all',
'every_page' => TRUE,
'weight' => (CSS_THEME+1)
)
);