Recent Topics

1 Jan 24, 2006 13:36    

If 2 of us are using theme: originalb2, but I want my blog to show my own logo, and the other person wants to show his or her own logo or picture, how is that configured & where?

I managed to put the blog button onto all the themes, and that's what I want, but how do I give myself my own logo for Metrolife & not anyone else's blog?

2 Jan 24, 2006 16:33

Couple of options:

1. Just make a copy of the whole dir, making a second skin. Then you can edit each one separately.

2. Add some php code that checks to see what blog you're on, the loads the image based on that. Might look something like this:

<img src="http://yoursite.com/images/
<php 
if ($blog == 2) echo "blog2logo.jpg";
if ($blog == 3) echo "blog3logo.jpg";
?>" alt="blog logo" />


Form is loading...