I'm using JA Puresite for the template. I'm trying to edit the css...but I want it to be in a seperate file so that when I update the template files, it doesn't erase my changes. I tried adding custom.css to the /css folder, but I'm not seeing the changes...
Custom css for JA Puresite
heart0
Hi,
JA Puresite is based on old JAT3v2 framework and it will not automatically load custom.css file as the new T3 framework, you need to call it via head block of this template
You can go to file: /templates/your_template_name/tpls/blocks/head.php
Add this line of code:
<link rel=”stylesheet” href=”templates/<?php echo T3_ACTIVE_TEMPLATE; ?>/css/custom.css” type=”text/css” />
Let me know if this helps