squishi
07-03-2008, 05:34 PM
The template engine prints this into the html pages:
<style type="text/css" id="vbulletin_css">
/**
* vBulletin 3.7.0 CSS
* Style: 'My Style 1'; Style ID: 4
*/
@import url("clientscript/vbulletin_css/style-e1f0d32e-00004.css");
</style>
What I want to do is add "/forum/" in front of the "clientscript" above, so that the css will work on my external pages.
How do I do that? I suppose it will require changing a php file?
<style type="text/css" id="vbulletin_css">
/**
* vBulletin 3.7.0 CSS
* Style: 'My Style 1'; Style ID: 4
*/
@import url("clientscript/vbulletin_css/style-e1f0d32e-00004.css");
</style>
What I want to do is add "/forum/" in front of the "clientscript" above, so that the css will work on my external pages.
How do I do that? I suppose it will require changing a php file?