Howdie there people BeeN a drupal fan for 8 months now and been happy with the limited themeing ability up to now.. So im trying to get a basic understanding of how things are working in the theme modual (starting with push button).
My first task is to customize the image insterted at the top of each block (want different images for different blocks).. sounds easy enough..
Done a bit of reading and getting a little stuck..
i know each block uses "box.tpl.php" right
wich goes like this
print $title
print $content
then in the css
.block .title h3 {
border-bottom: 2px solid #6699cc;
color: #369;
font-size: 18px;
font-weight: bold;
padding: 10px 5px 10px 30px;
margin-bottom: .25em;
background: transparent url(icon-block.png) left center no-repeat;
}
.block .content {
padding: 5px 5px 5px 5px;
}
.block {
margin-bottom: 1.5em;
}
lastly in the view source of the rendered html page
Events
bla bla bla bla bla
right so now my question..
do i have to edit the box.tpl.php file and create custom one's eg test.tpl.php but then how do i get selected blocks to use that file?
or do i have to create a custom
.blockTest .title h3 {
border-bottom: 2px solid #6699cc;