Change Theme / CSS based on user - Stack Overflow most recent 30 from stackoverflow.com2009-11-09T00:04:58Zhttp://stackoverflow.com/feeds/question/178863http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/178863/change-theme-css-based-on-user6Change Theme / CSS based on userabrudtkuhl2008-10-07T15:00:17Z2008-10-07T22:28:19Z
<p>I am building a product that we are eventually going to white-label. Right now I am trying to figure out the best way to facilitate these requirements programmatically so the user can update the basic design of the site (ie header color, etc) via their profile/settings form. </p>
<p>Requirements:
- User can update the logo (this is complete)
- User can update basic design elements (based on CSS), ie header color, footer color, sidebar color - all basic CSS overrides</p>
<p>We don't want to use ASP.Net Themes/Skins because that requires storing static themes in the local file system. We would like to use CSS to override the base style and store this in the database.</p>
<p>Our initial plan is to store the CSS in a simple varchar field in the database and write that CSS out to the Master Page on Pre-Init event using "!" to override the base styles. Is this the best solution? If not, what have you done to accomplish this functionality/</p>
http://stackoverflow.com/questions/178863/change-theme-css-based-on-user/178878#1788780Answer by warren for Change Theme / CSS based on userwarren2008-10-07T15:02:58Z2008-10-07T15:02:58Z<p>Your proposed method is how I would go about solving this problem: upload the user-controllable values (maybe just colors and font sizes) into a table linked to the user.</p>
<p>The logo/avatar you want the user to have can be stored in the db or as a file on the fs.</p>
http://stackoverflow.com/questions/178863/change-theme-css-based-on-user/178891#178891-1Answer by y0mbo for Change Theme / CSS based on usery0mbo2008-10-07T15:06:07Z2008-10-07T15:06:07Z<p>I would avoid using the !important clause and instead just ensure their values appear in a <code><style></code> tag following the import of the regular style sheets.</p>
<p>Otherwise, I would do it the same way.</p>
http://stackoverflow.com/questions/178863/change-theme-css-based-on-user/178949#1789490Answer by Travis Illig for Change Theme / CSS based on userTravis Illig2008-10-07T15:14:21Z2008-10-07T15:14:21Z<p>I think it depends on how savvy your users are about CSS. If they're web developers or have that inclination, having them write CSS is probably fine. If not, you'll either have to generate it statically based on their input and store it in the database OR you can just store the values entered and dynamically generate the CSS using a custom handler.</p>
<p>The custom handler approach would mean you could substitute values right in the middle of the CSS without having to worry about !important or the order in which the items are declared to ensure proper overrides happen.</p>
http://stackoverflow.com/questions/178863/change-theme-css-based-on-user/178960#1789600Answer by callaghan.matthew for Change Theme / CSS based on usercallaghan.matthew2008-10-07T15:15:21Z2008-10-07T15:15:21Z<p>With php for example you can create dynamic css, so this coupled with the user information stored in a db would surely suffice.</p>
<p>Try <a href="http://www.digital-web.com/articles/generating_dynamic_css_with_php/" rel="nofollow">here</a> or <a href="http://www.barelyfitz.com/projects/csscolor/" rel="nofollow">here</a> as an introduction.</p>
http://stackoverflow.com/questions/178863/change-theme-css-based-on-user/179001#1790013Answer by Mr. Shiny and New for Change Theme / CSS based on userMr. Shiny and New2008-10-07T15:21:52Z2008-10-07T15:21:52Z<p>First, determine which resources can be replaced, and whether or not resources can be added. You will need to store these somewhere; for small resources such as logos the db is probably fine, otherwise you need to worry about the size in the db.</p>
<p>Then you can determine how much functionality you want the user to customize: just colours, or entire styles? If it's just colours, you can define some variables in a CSS file and serve the file dynamically, with data loaded from the db. The CSS file might be called styles.asp and contain code such as this:</p>
<pre><code>.header_area {
border: 1px solid <%=headerBorderColor%>;
background-color: <%=headerBGColor%>;
foreground-color: <%=headerFGColor%>;
}
</code></pre>
<p>(The syntax I used is JSP syntax, I don't know ASP, but the idea is the same.)</p>
<p>Alternatively, allow the user to specify an entire stylesheet, either replacing the default one or supplementing it. Then store the entire sheet in the DB and serve it using its own URL (don't embed it in the page).</p>
<pre><code><link rel="stylesheet" href="default_styles.css">
<link rel="stylesheet" href="white_label_css.asp">
</code></pre>
<p>Make sure you set the cache headers and content type appropriately on the css file if you serve it using an asp page.</p>
<p>If you are concerned about what kind of content the user can put in the white_label_css file, you can limit it by making a custom tool which generates the css and stores it in the db. For example, instead of allowing the user to upload any file and store it in the db, the user would have to fill out a web-form detailing what customizations they want to make. This way you can ensure that only certain css rules/changes are allowed (but that may not be flexible enough).</p>
http://stackoverflow.com/questions/178863/change-theme-css-based-on-user/179012#1790120Answer by questzen for Change Theme / CSS based on userquestzen2008-10-07T15:23:20Z2008-10-07T15:23:20Z<p>If I understood correctly, you want to facilitate color and typography related changes. What about layout? If we safely assume that only color and typography are going to change, we can reuse the same style classes at the end of existing base CSS file and thus override the styles (using !important though a good idea, prevents users from overriding with their custom styles).</p>
<p>These newly created classes can be compressed to a single line string and stored as a varchar, which would then be linked/copied inline while building the page. I can think of the following options</p>
<ol>
<li>Inline CSS</li>
<li>Create a file partition where you can dump the generated CSS files and let browsers refer to that location (by creating a softlink?)</li>
<li>Use Ajax, retrieve the CSS and modify the DOM</li>
</ol>
<p>If layout is going to change, we are in a thicker soup, I would avoid this as the complexities involved with scripting/event-handling are way too much.</p>
http://stackoverflow.com/questions/178863/change-theme-css-based-on-user/179216#1792161Answer by abrudtkuhl for Change Theme / CSS based on userabrudtkuhl2008-10-07T16:08:14Z2008-10-07T16:08:14Z<p>I like the idea of using dynamic CSS using an ASP.Net Handler...</p>
<pre><code><link rel="stylesheet" href="style.ashx" />
</code></pre>
<p><strong>style.ashx</strong></p>
<pre><code><!--WebHandler Language="C#" Class="StyleSheetHandler"-->
</code></pre>
<p><strong>StyleSheetHandler.cs</strong></p>
<pre><code>public class StyleSheetHandler : IHttpHandler {
public void ProcessRequest (HttpContext context)
{
context.Response.ContentType = "text/css";
context.Response.ContentEncoding = System.Text.Encoding.UTF8;
string css = BuildCSSString(); //not showing this function
context.Response.Cache.SetExpires(DateTime.Now.AddSeconds(600));
context.Response.Cache.SetCacheability(HttpCacheability.Public);
context.Response.Write( css );
}
public bool IsReusable
{
get { return true; }
}
}
</code></pre>
<p>The BuildCSSString() Function will build the css based on the values stored in the database and return it to override the base style on the master page.</p>
http://stackoverflow.com/questions/178863/change-theme-css-based-on-user/180696#1806963Answer by Luca for Change Theme / CSS based on userLuca2008-10-07T22:28:19Z2008-10-07T22:28:19Z<p>I've been there some months ago. While using dynamic CSS generated by a dedicated handler / servlet has been the first solution, to improve performances a customized CSS is now produced on file overrinding the basic elements of the standard CSS:</p>
<pre><code><link rel="stylesheet" href="standard.css" />
<link rel="stylesheet" href="<%= customer_code %>/custom_style.css" />
...
<img scr="<%= customer_code %>/logo.png" />
</code></pre>
<p>Each custom CSS will have its own URL, so you can make the browser caching them.</p>
<p>This will make you saving <strong>for each request</strong> the users will make:</p>
<ol>
<li>traffic from the database to the application layer</li>
<li>traffic from the application layer to the browser</li>
<li>some computing at the application layer</li>
</ol>
<p>I'll second the idea the user should have to fill out a web-form detailing what customizations they want to make.</p>