If you want additional css files in your custom wordpress theme you can use the following.
- Create a directory called css in your /wp-content/themes/themename/ directory
- Upload the css files
- Add this line to header.php
[sourcecode]<link rel="stylesheet" type="text/css" media="all" href="<?php echo get_template_directory_uri() ?>/css/custom-css-file.css" />[/sourcecode]
Leave a Reply