CSS files - which to choose
Design and Skin Customization
If you want to just add you're own you can do that too.
First add the css file:
/skin/(your skin)/css/joanna.css (or whatever you want to call it.)
Then in include.php for the skin
/skin/(your skin)/include.php
you'll see all the other CSS files, so add yours to that list
// Bring in all our CSS files
jrCore_register_module_feature('jrCore', 'css', 'jrElastic', 'html.css');
jrCore_register_module_feature('jrCore', 'css', 'jrElastic', 'grid.css');
jrCore_register_module_feature('jrCore', 'css', 'jrElastic', 'site.css');
jrCore_register_module_feature('jrCore', 'css', 'jrElastic', 'page.css');
.....
jrCore_register_module_feature('jrCore', 'css', 'jrElastic', 'joanna.css');
Upload both joanna.css and that include.php to your site, reset the caches and your done.
