Hello,
The GetCSS script automatically loads the stylesheet in the parameter. In case of using Portal Engine approach, it's automatically updated in Master page definition.
If you use ASPX templates approach you can follow instructions on
Creating ASPX master pages and use following code that automatically links the selected Site stylesheet (and meta-tags) in the page header:
<head id="Head1" runat="server">
<asp:literal runat="server" id="ltlTags" enableviewstate="false" />
</head>
protected override void OnPreRender(EventArgs e)
{
base.OnPreRender(e);
this.ltlTags.Text = this.HeaderTags;
}
Best regards,
Zdenek C.