block

Customize specific blocks

In your themes block.tpl.php you can add a litle script that converts the title to a class to the wrapping div tag. First add the following in a php section:

<?php
$block_class_title
= 'block-'.strtolower(str_replace(" ", "-", $block->subject));
?>

It will convert "My Title" to "block-my-title".