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

dunkoh’s picture

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

krymp’s picture

Ahh yes, that's what I was looking for.

Thanks