Hey everybody,
I'm reworking the company website ( http://test.attractionindustries.com ) and have run into some trouble.
In the center I specified 3 regions for my blocks, content_top, main_content and content_bottom.
In content_top I used views/cck to create a gallery block. How can I modify/theme this block? I'd like to add a header image above it and maybe some other stuff.
I know a lot of it I can modify with CSS but I'd like a little more control than that. If I could create something like a node-page.tpl.php that would be great! I tried creating a block-view-front-page-gallery.tpl.php file but that didn't seem to work. I can't even tell if that's the correct filename I should be using or if that would even be possible!
Any help would be greatly appreciated, thanks!

Comments
There is a template file
There is a template file just for blocks in your theme. You can add markup to blocks by editing the block.tpl.php file. You can also get more specific with block.tpl.php. Here is a good resource http://drupal.org/node/104319. After you have the markup you need, you can style everything with CSS.
Thanks Tom, Just adding a
Thanks Tom,
Just adding a block.tpl.php changed all my blocks, I needed to change one in particular.
Turns out, drupal makes it easy. So easy it slipped past me! In Views I just had to click on Theme:Information and it output the filenames I could use to modify this one block: views-view--front-page-gallery.tpl.php
Back to work I go!
Glad you figured it out.
For posterity, block.tpl.php changes the markup for all your blocks. You can get more specific by adding files like:
block-user.tpl.php -- All user blocksblock-left.tpl.php -- For blocks in a region called left
block-block-1.tpl.php -- For custom block with id 1
block-[module]-[delta].tpl.php -- The id of the block
You can get more details about this by looking here: http://drupal.org/node/104319.
Thanks Tom! The completed
Thanks Tom!
The completed site is now up at http://attractionindustries.com/ Check it out if you like. Still a lot of content to upload, but it's mostly there.
MK