I'm running 61 blogs with MU, and I'm trying to be able to call the ID of a specific blog to serve up different header images. I'm limited in my PHP knowledge, and I've tried using the codex to no avail. For example (and I know this doesn't actually work, because the_blog_ID doesn't exist) -- I would put this at the top of my index.php file:
<div class="blog<?php the_blog_ID(); ?>">
This is the header.
</div>
So, if I'm on blog with ID 16, I have a class in my stylesheet with this:
.blog16 {
background-image: url(http://...);
}
And when a user is viewing blog 16, the unique image is displayed. If the user is viewing blog 24, a different image is displayed. I would have 61 different styles in the stylesheet, each with a different image.
Any help getting something to spit back the unique blog ID, depending on the blog a user is visiting, would be greatly appreciated!