Block Class allows users to add classes to any block through the block's configuration interface. By adding a very short snippet of PHP to a theme's block.tpl.php file, classes can be added to the parent <div class="block ..."> element of a block. Hooray for more powerful block theming!

Installing the Drupal 7.x version

  1. Enable the module
  2. To add a class to a block, simply visit that block's configuration page at Administration > Structure > Blocks

Installing the Drupal 6.x version (6.x-1.3)

  1. Enable the module
  2. Add this snippet to your theme's block.tpl.php file (see detailed instructions below): <?php print block_class($block); ?>
  3. To add a class to a block, simply visit that block's configuration page at Administration > Site Building > Blocks

How to add the PHP snippet

Here's the first line of the Garland theme's block.tpl.php prior to adding the code:

<div id="block-<?php print $block->module .'-'. $block->delta; ?>" class="clear-block block block-<?php print $block->module ?>">

And here's what the code should look like after adding the snippet:

<div id="block-<?php print $block->module .'-'. $block->delta; ?>" class="clear-block block block-<?php print $block->module ?> <?php print block_class($block); ?>">

IMPORTANT: Remember to separate the PHP snippet from the existing markup with a single space. If you don't add the space, your CSS classes could run together like this: block-modulecustomclass instead of block-module customclass.

Installing the Drupal 6.x dev version (6.x-dev)

  1. Enable the module
  2. Add this snippet to your theme's block.tpl.php file (see detailed instructions below): <?php print $block_classes; ?>
  3. To add a class to a block, simply visit that block's configuration page at Administration > Site Building > Blocks

How to add the PHP snippet

Here's the first line of the Garland theme's block.tpl.php prior to adding the code:

<div id="block-<?php print $block->module .'-'. $block->delta; ?>" class="clear-block block block-<?php print $block->module ?>">

And here's what the code should look like after adding the snippet:

<div id="block-<?php print $block->module .'-'. $block->delta; ?>" class="clear-block block block-<?php print $block->module ?> <?php print $block_classes; ?>">

IMPORTANT: Remember to separate the PHP snippet from the existing markup with a single space. If you don't add the space, your CSS classes could run together like this: block-modulecustomclass instead of block-module customclass.

Credits

Four Kitchens logo

Development of this module is sponsored by Four Kitchens.

Downloads

Recommended releases

Version Downloads Date Links
7.x-1.0 tar.gz (8.5 KB) | zip (9.4 KB) 2011-Oct-14 Notes
6.x-1.3 tar.gz (8.39 KB) | zip (9.88 KB) 2010-Jan-18 Notes

Development releases

Version Downloads Date Links
7.x-1.x-dev tar.gz (8.49 KB) | zip (9.42 KB) 2011-Oct-15 Notes
6.x-1.x-dev tar.gz (9.13 KB) | zip (10.18 KB) 2011-Oct-15 Notes

Project Information


Maintainers for Block Class

  • berenddeboer - 3 commits
    last: 16 weeks ago, first: 16 weeks ago
  • Todd Nienkerk - 35 commits
    last: 1 year ago, first: 3 years ago
  • elliotttf - 1 commit
    last: 1 year ago, first: 1 year ago

Issues for Block Class

To avoid duplicates, please search before submitting a new issue.
All issues
Bug reports
Oldest open issue: 9 Jun 08
nobody click here