|
yeah, there should be a set of rules in developing a theme, and a small line of code that will set the path to the template files.
ie: move the css file into the templates folder, then create a subdirectory the same name as the css file. the .tpls should go in there. then make that selectable either via admin panel, or users settings.
ie:
-templates
----default.css
----mystyle.css
----newstyle.css
----default
--------header.tpl
--------all_sidebarl.tpl
--------all_footer.tpl
----mystyle
--------header.tpl
--------all_sidebarl.tpl
--------all_footer.tpl
----newstyle
--------header.tpl
--------all_sidebarl.tpl
--------all_footer.tpl
|