If you use user stylesheets and include them in the head of a template, then if you call that page in a browser you see this :
Code: Select all
<meta http-equiv="Content-Type" content="text/html; charset=iso-8859-1"/>
---- your head content goes here ----
<script src="./phpwcms_template/inc_js/frontend.js" type="text/javascript"></script>
<link rel="stylesheet" type="text/css" href="./phpwcms_template/inc_css/frontend.css" />
</head>
Like this :
Code: Select all
<meta http-equiv="Content-Type" content="text/html; charset=iso-8859-1"/>
<script src="./phpwcms_template/inc_js/frontend.js" type="text/javascript"></script>
<link rel="stylesheet" type="text/css" href="./phpwcms_template/inc_css/frontend.css" />
---- your head content goes here ----
</head>
For example if you use stylesheets:
I want for ALL pages, that HR-Tags are not visible.
All pages, except one page.
In frontend.css I defined :
hr {display:none}
to overwrite this, I would need to define a 2nd stylesheet defining :
hr {display:block}
So the old setting of none-displaying HR Tags will be overwritten only when I put a link in the head of my template pointing to the new stylesheet.
Theoretical ...
But as phpWCMS includes all head content before pointing to user Head Content .... it doesn't work.