I'm using JoomlaArt template. That template was built on T3 Framework.
They have a integrated way of adding custom CSS file and it is pretty simple. Everything what needs to be done is to add custom.css file to /your_template/css folder.
That file is loaded in head.php by following code:
<?php // CUSTOM CSS if(is_file(T3_TEMPLATE_PATH . '/css/custom.css')) { $this->addStyleSheet(T3_TEMPLATE_URL.'/css/custom.css'); } ?> But, problem for me is because that file was first and I need it to be loaded as last css file.
I don't have idea where do I need to do that. Any advice is welcome.
Thanks