If anyone else was wondering (i.eg found this thread in a search), you can do this by doing the following in the admin CP:
Styles & Templates -> Style manager -> Go to the dropdown to the right of the style you want and select "Common Templates".
Enter
Quote:
<link href="linktoyourcssfile" rel="stylesheet" type="text/css" />
|
in the
headinclude block.
You can also make an IF condition if you only want to add the CSS in vBa pages by entering
this instead of the text above:
Quote:
<if condition="THIS_SCRIPT == 'adv_index'">
<link href="linktoyourcssfile" rel="stylesheet" type="text/css" />
</if>
|