Don't miss out Virtual Happy Hour this Friday (April 26).

Try our conversational search powered by Generative AI!

Forum Stylesheets

Vote:
 

Has anyone worked with the Stylesheet property in the Forum module?

I need to assign different stylesheets to different forums, but the documentation gives noe examples so I'm a bit lost. Do I need to make some sort of assignment in my Mastepage or can I set the stylesheet url in my panel and somehow reload my page? Are there any example code on how to do this?

#24038
Sep 22, 2008 14:01
Vote:
 

Found one possible solution. Made a user control in my masterpage and put the user control in the header part of the master page. The user control outputs the <style css... > tag.

In my "go to room" click event the user control is loaded with the FindControl method, and updated with room.StyleSheet.Url property. Seems to work for now.

#24073
Sep 23, 2008 12:29
Vote:
 
This seemed to work but the solution is flawed. Is there anyone out there that has worked with stylesheets in the forum that has a solution or some tips?
#24136
Sep 25, 2008 10:32
Vote:
 

Hi,

If you are using EPiServer CMS you can call the RegisterCssFile(string path) method of your page to register the css in the header. If not, the code to achieve this looks something like this:

public bool RegisterCssFile(string path)
{
    if (Header == null)
    {
        return false;
    }

    if (_registeredCssScripts[path] != null)
    {
        return true;
    }

    HtmlGenericControl link = new HtmlGenericControl("link");

    link.Attributes["rel"] = "stylesheet";
    link.Attributes["type"] = "text/css";
    link.Attributes["href"] = ResolveUrl(path);

    Header.Controls.Add(link);

    _registeredCssScripts[path] = "true";

    return true;
}

 

 

#24144
Edited, Sep 25, 2008 11:58
Vote:
 

Hi!

This method did the trick, or sort of :)

Solution: Added a user control in the <header> of my masterpage. Added a method in the masterpage.cs file:

public void RegisterCssFile(string cssFilePath) { if (ucHeader != null)   {     ucHeader.AlternateStyleSheetURL = cssFilePath;  } }

In the Header.ascx file we did this:

public partial class Header : System.Web.UI.UserControl { private string _alternateStylesheetUrl; protected void Page_Load(object sender, EventArgs e) { HtmlGenericControl _link = new HtmlGenericControl("link"); _link.Attributes.Add("rel", "stylesheet"); _link.Attributes.Add("type", "text/css"); _link.Attributes.Add("href", ResolveUrl("~/Layout/css/Kreftforeningen.css")); this.Controls.Add(_link); } protected void Page_PreRender(object sender, EventArgs e) { if (!String.IsNullOrEmpty(AlternateStyleSheetURL)) { HtmlGenericControl _linkAlt = new HtmlGenericControl("link"); _linkAlt.Attributes.Add("rel", "stylesheet"); _linkAlt.Attributes.Add("type", "text/css"); _linkAlt.Attributes.Add("href", AlternateStyleSheetURL); this.Controls.Add(_linkAlt); } } public string AlternateStyleSheetURL { get { return _alternateStylesheetUrl; } set { _alternateStylesheetUrl = value; } } }
The header is now set to be altered. In my Forum.ascx control, when displaying a Room or a list of Reply's we call a method:
private void ApplyStyleSheet(){// Set stylesheetRoomBase room = ForumHandler.GetRoom(RoomID);if (!string.IsNullOrEmpty(room.StyleSheet.Url)){MySolutionMaster master = Page.Master as MySolutionMaster;if (master != null){master.RegisterCssFile(ResolveUrl(room.StyleSheet.Url));}}}
 Where RoomID is a plublic proptert set when loading a room.
Hope this helps someone else :) 
#25115
Oct 14, 2008 11:28
This thread is locked and should be used for reference only. Please use the Legacy add-ons forum to open new discussions.
* You are NOT allowed to include any hyperlinks in the post because your account hasn't associated to your company. User profile should be updated.