What's the best way to link to an external style sheet in SharePoint - Stack Overflow most recent 30 from stackoverflow.com 2009-11-29T00:12:25Z http://stackoverflow.com/feeds/question/248738 http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/248738/whats-the-best-way-to-link-to-an-external-style-sheet-in-sharepoint 1 What's the best way to link to an external style sheet in SharePoint Ryan Smith 2008-10-29T23:04:54Z 2008-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#248959 1 Answer by tsilb for What's the best way to link to an external style sheet in SharePoint tsilb 2008-10-30T00:58:05Z 2008-10-31T18:54:47Z <p>Can you not add a &lt;link rel...&gt; 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#248994 0 Answer by Ryan Smith for What's the best way to link to an external style sheet in SharePoint Ryan Smith 2008-10-30T01:23:03Z 2008-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#249711 0 Answer by Ryan for What's the best way to link to an external style sheet in SharePoint Ryan 2008-10-30T09:58:43Z 2008-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(@"&lt;link href=""{0}/{1}"" rel=""stylesheet""/&gt;", 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#250782 0 Answer by Abs for What's the best way to link to an external style sheet in SharePoint Abs 2008-10-30T16:15:39Z 2008-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>