JHViljoen wrote:
Thank you for replying so fast, I know how to add the rt_osmosis-custom.css file, but the thing is, it would be nice as it would make my work much easier, if our designers could just edit the colors in the template manager, we never update our gantry framework, as we use the ones included with the template. So it would still be nice if I could just add the few lines of extra code.
Thanks
JH Viljoen
You could try this, you can import a style sheet from within another stylesheet. Better yet, you can import any number of styles this way. So your document’s head section would include this:
<link rel="stylesheet" type="text/css" href="/css/tempsheet.css" />
Then your “tempsheet.css” document can contain calls to any number of additional style sheets:
@import url('/css/color1.css');
@import url('/css/color2.css');
@import url('/css/color3.css');
All three CSS files above will be loaded from this single stylesheet tempsheet.css. Your @imports statements must come before all other content in your CSS. Even putting comments before the @import tag will cause your imports to fail. So be sure to do your imports before you do anything else.
Once you've completed the project you should finalize the settings in the Template Manager and remove the tempsheet.css as this method does slow loading a bit.