Created
November 12, 2013 20:18
-
-
Save MaxLynam/7437930 to your computer and use it in GitHub Desktop.
Add Custom CSS into Joomla Template
- insert as last element before the closing /head tag .... as per code below.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| <?php if (file_exists("<?php echo $this->baseurl ?>/templates/<?php echo $this->template; ?>/css/custom.css")); ?> | |
| <link rel="stylesheet" href="<?php echo $this->baseurl ?>/templates/<?php echo $this->template; ?>/css/custom.css" type="text/css" media="screen" /> | |
| <?php endif; ?> | |
| </head> |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment