I installed BlockTheme in a similar manner to how Bob from mustardseedmedia.com recommends, outlined below:

Install Module
Create theme blankblock|BlankBlock
Change blocks to use BlankBlock theme
Copy block.tpl.php to blocktheme-blankblock.tpl.php
Add blankblock class to blocktheme-blankblock.tpl.php (shown below)

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

Add CSS for theme1 to style.css (shown below)

/*** BlockTheme CSS ***/

.blankblock {
  border: none;
  background: #FFF;
  padding: 0 0 0 0;
  margin: 0;
}

But hey, I've still got a border, padding, and margins applied to the blocks I applied this theme to. I even cleared the cache before refreshing the page. What am I doing wrong?

Comments

m.rademacher’s picture

Bump?

Let me know if I've posted this in the wrong location, or if more information is needed. The blocktheme module is very powerful, and I'd really like to make use of it.