Thanks; In the case I don't need css styling. Let's take for example the need for a different banner per blogs using the same theme. Is there a place in roller specific for every blog (in the file hierarchy) where I can just put a different image for each blog and access it through my velocity template by some $ expression or a macro?
-----Original Message----- From: Matt Raible [mailto:[EMAIL PROTECTED] Sent: Thursday, June 29, 2006 6:30 PM To: [email protected] Subject: Re: same theme with small differences per blog I've done this on my blog: http://raibledesigns.com/page/rd. Click on the category names to see the differences. I use a CSS class on the <body> tag to make this work. #if( $req.getParameter( $WEBLOGCATEGORYNAME_KEY ) ) #set( $chosenCat = $req.getParameter( $WEBLOGCATEGORYNAME_KEY ) ) #set( $chosenCat = $stringUtils.replace($chosenCat, " ", "").toLowerCase() ) #set( $chosenCat = $stringUtils.replace($chosenCat, "/", "") ) #end <body id="page-#showPageName()"#if($chosenCat) class="$chosenCat"#end> Matt On 6/29/06, Guy Katz <[EMAIL PROTECTED]> wrote: > Hi all; > > I want to have all my blogs with the same custom theme I created. I also > want, for example, the header picture to be different per blog or to > style a specific blog element differently per user.. > > Note that my blogger admins do not change anything themselves, I do all > the prep work in advance (I get the header image and style requirements > from the blog admins). > > What is the best way to achieve this? > > > > > > > > >
