What's the best way to link to an external style sheet in SharePoint - Stack Overflow most recent 30 from stackoverflow.com2009-11-29T00:12:25Zhttp://stackoverflow.com/feeds/question/248738http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/248738/whats-the-best-way-to-link-to-an-external-style-sheet-in-sharepoint1What's the best way to link to an external style sheet in SharePointRyan Smith2008-10-29T23:04:54Z2008-10-31T18:54:47Z
<p>I have some user controls that I'm loading in SharePoint and I would prefer to have all those styles contained in an external style sheet. What's the best way to link to an external stylesheet in CSS?</p>
<p>Thanks.</p>
http://stackoverflow.com/questions/248738/whats-the-best-way-to-link-to-an-external-style-sheet-in-sharepoint/248959#2489591Answer by tsilb for What's the best way to link to an external style sheet in SharePointtsilb2008-10-30T00:58:05Z2008-10-31T18:54:47Z<p>Can you not add a <link rel...> to the head? If not, can you this.page.header.controls.add?</p>
http://stackoverflow.com/questions/248738/whats-the-best-way-to-link-to-an-external-style-sheet-in-sharepoint/248994#2489940Answer by Ryan Smith for What's the best way to link to an external style sheet in SharePointRyan Smith2008-10-30T01:23:03Z2008-10-30T01:23:03Z<p>Thanks,</p>
<p>I was looking at that way too complicated like. Your answer solved my problem and will actually work a lot better than the method that I was going to approach it from.</p>
http://stackoverflow.com/questions/248738/whats-the-best-way-to-link-to-an-external-style-sheet-in-sharepoint/249711#2497110Answer by Ryan for What's the best way to link to an external style sheet in SharePointRyan2008-10-30T09:58:43Z2008-10-30T09:58:43Z<p>This code will ensure that you only add 1 stylesheet reference to a page regardless of how many web parts you have on it - same code snippet can be used for javascript.</p>
<pre><code>protected override void OnPreRender(EventArgs e)
{
const string stylesheet = "YourStylesheet.css";
if (!Page.IsClientScriptBlockRegistered(stylesheet))
{
Page.RegisterClientScriptBlock(stylesheet,
string.Format(@"<link href=""{0}/{1}"" rel=""stylesheet""/>",
this.ClassResourcePath, stylesheet));
}
base.OnPreRender(e);
}
</code></pre>
http://stackoverflow.com/questions/248738/whats-the-best-way-to-link-to-an-external-style-sheet-in-sharepoint/250782#2507820Answer by Abs for What's the best way to link to an external style sheet in SharePointAbs2008-10-30T16:15:39Z2008-10-30T16:15:39Z<p>If you're using MOSS, you can remove this configuration from your code entirely by using SharePoint's built in alternate style sheet property. </p>
<ol>
<li>Drop down the <em>Site Actions</em> menu, and select <em>Site Settings->Modify All Site Settings</em>.</li>
<li>On the resulting page, click on the <em>Master page</em> link in the <strong>Look and Feel</strong> column.</li>
<li>On the <em>Site Master Page Settings</em> page, scroll to the bottom to the <strong>Alternate CSS URL</strong> section. Select the <em>Specify a CSS file...</em> radio button and enter the URL of your style sheet. I put mine in the Home site's Style Library, but you can pretty much put it where you want.</li>
<li>If you like, you can set it for all the subsites to by selecting the <em>Reset all subsites to inherit this alternate CSS URL</em> checkbox.</li>
<li>Click the <em>OK</em> button.</li>
</ol>
<p>Sadly,this configuration isn't available for WSS sites. But the object model does have it. So you can apply it with code in both WSS and MOSS, either in a web part or via something like PowerShell.</p>
<p>In code, once you have a reference to the the SPWeb object, say in a cleverly named variable called <code>theWeb</code>, you can just assign the URL of stylesheet with the following code:<br />
theWeb.AlternateCssUrl = "http://server/site/library/stylesheet.css";
theWeb.Update();</p>