I have drupal multisite installed and atm I have two sites. Both sites uses same theme, but there are few tiny differences between looks of the site (like logo and div/bar is different color). Or well I would that they would have those differences. Now the question is how can I know on theme template that which site is showing up? Is there some paremeter or variable somewhere? Basically so that I could do is simple php if clause (if its this site, show this div and its the other site dnot show it)?
Thanks.
In one of my project I had the similar problem. What I did was that in template.php I created the following function:
And then I could call this in the page.tpl.php code. Like
Otherwise you could look into Block Classes module. That could also help.