Archive of my old McBlog.
The McBlog

This is the archive of the very short "McBlog." I have abandoned this in favor of the personal and professional content I am now posting on this site. I have also abandoned the Drupal Blog module, because I have not found it any more useful than posting regular Drupal stories.
Nonprofits on SecondLife, MySpace, and Facebook
I finally got a blog header
To follow up on my previous post, I found a way to edit the php code to place the "bloginfo" block at the top of the content. One of the problems with Drupal is that if you add any blocks to the content region of a page, it puts the blocks below the content. I wanted the block on top of the content. This post on drupal.org helped me. I adapted it to use the "bloginfo" block as follows: (put this in the "center" div in page.tpl.php for your chosen theme) <?php if (arg(0) == 'blog' || $node->type == 'blog'): ?> <?php
$block = module_invoke('bloginfo', 'block', 'view', '0');
print $block['content'];
?> <?php endif; ?> This shouldn't be so difficult. I hope somebody has already created a Drupal theme that handles this by default. If not, maybe I should create one. Oh, one more thing: even with this, I could not find a way to make the block title appear. I had to write the block title within the bloginfo block content.