I am using a program which calls on the vbulletin stylesheet. Unfortunatly it is bringing up an error because of a relative link.
The problem output is:
</style>
<link rel="stylesheet" type="text/css" href="clientscript/vbulletin_important.css?v=380" />
<!-- / CSS Stylesheet -->
Which I have found is from the headinclude template and is in answere to:
$style[css]
<if condition="is_browser('opera') AND !is_browser('opera', '8.0.1')">
<style type="text/css" id="vbulletin_opera8fix_css">
ul, ol { padding-$stylevar[left]:20px; }
</style>
</if>
<if condition="$show['editor_css']">
$editor_css
</if>
What I need to do to fix my problem is find where I can edit to replace the relative link with a full link and I just can't seem to find it.
Thanks
The problem output is:
</style>
<link rel="stylesheet" type="text/css" href="clientscript/vbulletin_important.css?v=380" />
<!-- / CSS Stylesheet -->
Which I have found is from the headinclude template and is in answere to:
$style[css]
<if condition="is_browser('opera') AND !is_browser('opera', '8.0.1')">
<style type="text/css" id="vbulletin_opera8fix_css">
ul, ol { padding-$stylevar[left]:20px; }
</style>
</if>
<if condition="$show['editor_css']">
$editor_css
</if>
What I need to do to fix my problem is find where I can edit to replace the relative link with a full link and I just can't seem to find it.
Thanks
Comment