Core css loading when not logged in
Permalink
Even after I've signed out, the core concrete5 css seems to be loading and is affecting the bootstrap.css for responsive.
http://www.state-street.org/
Any ideas on what might cause this?
http://www.state-street.org/
Any ideas on what might cause this?
You will find the reason in concrete/elements/header_required.php
that file is responsible for putting in the header everything that's required including meta tags, default css files, jquery...
Aroubd line 66 you'll find
This loads jquery, the javascript needed by C5 when using it's interface and the css that goes with it.
A common fix is to copy the file header_required.php to your root elements folder so as to override the original without breaking anything and in tha newly copied file modify the lines like so:
In case you still want jquery to load all the time and the other ones to load only when editing just take jquery out of the condition like so