diff options
author | Dries Buytaert <dries@buytaert.net> | 2010-10-02 23:42:47 +0000 |
---|---|---|
committer | Dries Buytaert <dries@buytaert.net> | 2010-10-02 23:42:47 +0000 |
commit | 5f482ee3d60c46c231fd45243256f893c579eda4 (patch) | |
tree | 5dbaed02fe362b024dc871474ba18bc9cb97b6d1 | |
parent | 5d7a73564305989fd61700d0d3f4d7b55f6b26f5 (diff) | |
download | brdo-5f482ee3d60c46c231fd45243256f893c579eda4.tar.gz brdo-5f482ee3d60c46c231fd45243256f893c579eda4.tar.bz2 |
- Patch #896956 by tim.plunkett, Jeff Burnz: featured region should expand to full width.
-rw-r--r-- | themes/bartik/css/style.css | 2 | ||||
-rw-r--r-- | themes/bartik/templates/page.tpl.php | 4 |
2 files changed, 3 insertions, 3 deletions
diff --git a/themes/bartik/css/style.css b/themes/bartik/css/style.css index 02710342f..f56720046 100644 --- a/themes/bartik/css/style.css +++ b/themes/bartik/css/style.css @@ -463,7 +463,7 @@ h1#site-name, font-size: 1.643em; font-weight: normal; line-height: 1.4; - padding: 50px 0 45px; + padding: 20px 0 45px; margin: 0; background: #f0f0f0; border-bottom: 1px solid #e7e7e7; diff --git a/themes/bartik/templates/page.tpl.php b/themes/bartik/templates/page.tpl.php index 1727dff6b..fbd7fe174 100644 --- a/themes/bartik/templates/page.tpl.php +++ b/themes/bartik/templates/page.tpl.php @@ -166,9 +166,9 @@ <?php endif; ?> <?php if ($page['featured']): ?> - <div id="featured" class="section clearfix"> + <div id="featured"><div class="section clearfix"> <?php print render($page['featured']); ?> - </div> <!-- /#featured --> + </div></div> <!-- /.section, /#featured --> <?php endif; ?> <div id="main-wrapper" class="clearfix"><div id="main" class="clearfix"> |