diff -up dreamy/block.tpl.php dreamy-new/block.tpl.php
--- dreamy/block.tpl.php	2007-12-14 11:03:48.000000000 -0500
+++ dreamy-new/block.tpl.php	2009-02-25 15:22:16.000000000 -0500
@@ -1,7 +1,11 @@
 <?php
-  // $Id: block.tpl.php,v 1.2 2007/12/14 16:03:48 jswaby Exp $
+// $Id: block.tpl.php,v 1.3 2007/08/07 08:39:36 goba Exp $
 ?>
-  <div class="block block-<?php print $block->module; ?>" id="block-<?php print $block->module; ?>-<?php print $block->delta; ?>">
-    <h2 class="title"><?php print $block->subject; ?></h2>
-    <div class="content"><?php print $block->content; ?></div>
- </div>
+<div id="block-<?php print $block->module .'-'. $block->delta; ?>" class="clear-block block block-<?php print $block->module ?>">
+
+<?php if (!empty($block->subject)): ?>
+  <h2><?php print $block->subject ?></h2>
+<?php endif;?>
+
+  <div class="content"><?php print $block->content ?></div>
+</div>
Common subdirectories: dreamy/images and dreamy-new/images
diff -up dreamy/page.tpl.php dreamy-new/page.tpl.php
--- dreamy/page.tpl.php	2007-12-14 11:03:48.000000000 -0500
+++ dreamy-new/page.tpl.php	2009-02-25 15:20:48.000000000 -0500
@@ -35,7 +35,7 @@
 			<?php if (strlen($mission) > 0) { ?><div id="mission"><?php print $mission ?></div><?php } ?>
 			<div id="main">
 				<?php print $breadcrumb ?>
-				<h1 class="title"><?php print $title ?></h1>
+				<?php if(!empty($title)) { print '<h1 class="title">' . $title . '</h1>'; } ?> 
 				<div class="tabs"><?php print $tabs ?></div>
 				<?php print $help ?>
 				<?php print $messages ?>
@@ -61,7 +61,7 @@
 			<?php if (strlen($right) > 0) { ?>
 			<div id="sidebar-right">
 				<?php print $right ?>
-				<div id="sidebar-bottom">
+				<div id="sidebar-bottom-right">
 					&nbsp;
 				</div>
 			</div>
@@ -72,7 +72,7 @@
 					&nbsp;
 				</div>
 				<?php print $left ?>
-				<div id="sidebar-bottom">
+				<div id="sidebar-bottom-left">
 					&nbsp;
 				</div>
 			</div>
@@ -83,8 +83,8 @@
 			<div id="footer-valid">
 				<a href="http://validator.w3.org/check/referer">xhtml</a> / Ported by <a href="http://drupal.org/user/39343">Jason Swaby</a>
 			</div>
-			<?php print $footer ?>
-			<?php print $footer_message ?>
+			<?php print $footer; ?>
+			<?php print $footer_message; ?>
 		</div>
 		<?php print $closure ?>
 	</div>
diff -up dreamy/style.css dreamy-new/style.css
--- dreamy/style.css	2008-07-02 10:24:55.000000000 -0400
+++ dreamy-new/style.css	2009-02-25 15:09:57.000000000 -0500
@@ -264,7 +264,7 @@ table {
   vertical-align: top;
   margin: 0 0 5px 3px;
 }
-#sidebar-bottom {
+#sidebar-bottom #sidebar-bottom-left #sidebar-bottom-right {
   height:20px;
   background:url(images/bg-sidebar-bottom.gif) no-repeat top center #fff;
 }
