The theme can look more great if you add more regions, specialy for the header color, with the mission, and adding more regions/blocs to the top right and before content

Great job

Comments

rootbalans’s picture

Title: Mission , more region » Mission region is center

You can change the following lines in page.tpl.php:

  <div id="header-image">
-    <?php
-      if (!empty($mission)) {
-       print '<div id="site-mission">'.$mission.'</div>';
-     }
-    ?>
  </div>

......

<div id="middle-content">
      <div class="content-padding">
+      <?php $mission = theme_get_setting('mission', false); if ($mission != ""): ?>
+	<div id="mission"><?php print theme_get_setting('mission'); ?></div>
+	<?php endif; ?>
          <?php if ($tabs): print '<div id="tabs-wrapper" class="clear-block">'; endif; ?>

And add the lines below to your styles.css ;

+#mission {
+  padding: 1em;
+  background-color: #f3f3f3;
+  border: 1px solid #f3f3f3;
+  margin-bottom: 2em;
+  text-align:center;
+}