Hi,
It's been a while since I last used drupal, maybe a couple of years.
I'm putting together a theme for my new site and have come across a slight problem. I'm using rounded boxes for the nodes (that are created using a series of DIV's) and would like to do the same for pages like the contact and create content pages, I'm pretty certain that this used to be handled by the box function in the old theme system but i've created the box.tpl.php file and it doesn't seem to do anything? Am I doing this completely wrong or is it more likely that i've coded something up wrong.
Here's the content of box.tpl.php:
<div class="box"> <div class="box-top"> <div class="box-title"><?php print $title?></div> <div class="box-body"> <?php print $content?> </div> </div> </div>
and here's the part of page.tpl.php thats relevant to calling up content:
<div id="content"> <?php if ($tabs) { ?> <div class="tabs"><?php print $tabs></div> <?php } ?> <?php print $content; ?> <br /><br /> </div>
Cheers,
Barry