Adding CSS

  1. // in my template.php
  2. $theme_path = path_to_theme();
  3.  
  4. // Add javascript and stylesheets here.
  5. drupal_add_css($theme_path .'/css/mystyles.css', 'theme', 'all');
  6. drupal_add_js($theme_path .'/myjavascript.js');