diff options
author | pete <pete@36083f99-b078-4883-b0ff-0f9b5a30f544> | 2008-07-10 17:32:56 +0000 |
---|---|---|
committer | pete <pete@36083f99-b078-4883-b0ff-0f9b5a30f544> | 2008-07-10 17:32:56 +0000 |
commit | 77c03874d3c796ac8bd2c480fce0c125cb71b279 (patch) | |
tree | 3ada95c41fd9c6dd9acdbf08118431546e98774f | |
parent | af697567987abba8c9f37dcfadda20e5d90cad65 (diff) | |
download | elgg-77c03874d3c796ac8bd2c480fce0c125cb71b279.tar.gz elgg-77c03874d3c796ac8bd2c480fce0c125cb71b279.tar.bz2 |
two column canvas layout fixed
git-svn-id: https://code.elgg.org/elgg/trunk@1394 36083f99-b078-4883-b0ff-0f9b5a30f544
-rw-r--r-- | views/default/canvas/layouts/two_column.php | 2 | ||||
-rw-r--r-- | views/default/css.php | 4 |
2 files changed, 5 insertions, 1 deletions
diff --git a/views/default/canvas/layouts/two_column.php b/views/default/canvas/layouts/two_column.php index a8b607f1f..f158297f7 100644 --- a/views/default/canvas/layouts/two_column.php +++ b/views/default/canvas/layouts/two_column.php @@ -26,7 +26,7 @@ <!-- main content --> <div id="layout_maincontent" class="has_sidebar_right"> -<div id="wrapper_maincontent"> +<div id="wrapper_maincontent" class="content_area"> <h2><?php echo $vars['title']; ?></h2> <?php echo $vars['area1']; ?> diff --git a/views/default/css.php b/views/default/css.php index d709c90a4..370c31b87 100644 --- a/views/default/css.php +++ b/views/default/css.php @@ -186,6 +186,10 @@ h6 { font-size: 0.8em; } } #wrapper_sidebar_right { margin:0; + background: white; + padding:10px; + border-bottom:1px solid #cccccc; + border-right:1px solid #cccccc; } #layout_sidebar_right_narrow { width:160px; |