I would like to take a few of my blocks and place the content in different parts of my site. For instance, I have a tag cloud and a photo cloud block that I would like to place in the header area. I would also like only the block content visible, not the block titles. Could someone please help?

Thanks!

Comments

nevets’s picture

To place the blocks in the header you want to read up on regions in PHPtemplate. That should help you with placing the blocks in the header.

For the second part you need the name of the region you just created (I will use header_block in the sample below) and how you have titles set up in the block (for the theme I am look at the titles are an h2 tag with a css class of title so I will use that in the sample). With that information add the following the style.css for you theme

#header_block h2.title {
  display: none;
}

Make sure you add it after any more general rules for h2.title (the end of the file should be a safe place)

eswiderski’s picture

I'll give it a try!