Reputation: 6269
I want to customize the default block of drupal 6 such that i have my own template for different blocks ..How can I achieve that ?
Upvotes: 0
Views: 718
Reputation: 36
Steps to customize block.tpl.php
Upvotes: 1
Reputation: 158
1) goto the theme folder 2) copy the content of block.tpl.php to a new file block-div-id.tpl.php, where block-div-id is the div id of the block which you want to customize. 3) Now this template will be used to render that block.
Upvotes: 1