Hi Vincent,
I discovered that loap.php is
sometimes not loaded (500 internal server error
), so the RewriteRule
in .htaccess
has no effect.
Now I use a very dirty hack, I am loading the css the "old" way...
I use the skin cologneblue
.
Edit your own skin.php
for instance skins/vector.php
.
In the skin file look for
function setupSkinUserCss
and (in my case) add:
$out->addStyle( 'cologneblue/screen.css', 'screen' );
So
$out->addStyle( 'cologneblue/screen.css', 'screen' );
generates in the html file:
<link rel="stylesheet" href="/skins/cologneblue/screen.css?303" media="screen" />
It is working 100% of the time.
Good luck, Jos