where can i add a link to a custom css file in Joomla?
I have tried adding file in index.php but it is valid only for that template and if i load another template i lose the link.
I'm using Joomla 2.5.
where can i add a link to a custom css file in Joomla?
I have tried adding file in index.php but it is valid only for that template and if i load another template i lose the link.
I'm using Joomla 2.5.
The right place for a site-wide css should be the template index.php
file. But since you plan to use several templates, the only other meaningful option is to add it in a system plugin event, instead of spelling out the code you will need to use
$document->addStyleSheet($cssurl)
However it will be more effective if you just insert it into all your templates. Also please note that system page cache may not run the events on cache hits.