On Wed, 2006-02-01 at 14:25 -0700, Gary Thomas wrote: > I'm trying to follow the instructions to set up my own stylesheet, > per http://projects.edgewall.com/trac/wiki/TracInterfaceCustomization > It says that I should put a @include directive in my site_css.cs > file. All of my attempts at this have failed - could someone > elucidate the exact details, please? I assume that it goes > inside of the lines from the template: > <?cs > ################################################################## > # Site CSS - Place custom CSS, including overriding styles here. > ?> > > When I put the @include in there, nothing happens. If I put it > outside, it just gets passed through to the raw css output.
Yes, you want it outside the <?cs ?> block in the output CSS. @include is a CSS directive to include another stylesheet, so this is parsed in the browser, not server-side as it seems like you're expecting. -- Matthew Good <[EMAIL PROTECTED]> _______________________________________________ Trac mailing list [email protected] http://lists.edgewall.com/mailman/listinfo/trac
