By krymp on
I am converting my site over and already have my own stylesheets, base.csss and master.css.
I noticed that drupal uses this to call the stylesheets print $styles
What and where is that style calling?
I am converting my site over and already have my own stylesheets, base.csss and master.css.
I noticed that drupal uses this to call the stylesheets print $styles
What and where is that style calling?
Comments
Check to see what theme you
Check to see what theme you are using. If you want to do a decent amount of customization - you may want to check out the zen theme, or other similar base starter themes ( http://drupal.org/project/zen )
Inside the theme's folder is a .info file which states various files and settings for the theme. You would add in your stylesheet info the same as the theme is doing, like: stylesheets[all][] = style.css
Be sure to place the css files in the same directory as the theme you are/will be using.
This should allow the page.tpl.php file's call to print styles to pick up your css files
Ahh yes, that's what I was
Ahh yes, that's what I was looking for.
Thanks