diff options
author | friendica <info@friendica.com> | 2013-09-29 21:55:40 -0700 |
---|---|---|
committer | friendica <info@friendica.com> | 2013-09-29 21:55:40 -0700 |
commit | 3f79a9581ad5effef1f231d6d6d37c03f02121f5 (patch) | |
tree | 255e616c7b846ab088dcec359b93ae598f9a7f66 | |
parent | 398162f78ae994a79708c8f3fb44cb597fb57e1f (diff) | |
download | volse-hubzilla-3f79a9581ad5effef1f231d6d6d37c03f02121f5.tar.gz volse-hubzilla-3f79a9581ad5effef1f231d6d6d37c03f02121f5.tar.bz2 volse-hubzilla-3f79a9581ad5effef1f231d6d6d37c03f02121f5.zip |
clean up the default page definition - get rid of right_aside which is illegal
-rw-r--r-- | view/css/default.css | 6 | ||||
-rw-r--r-- | view/php/default.php | 6 | ||||
-rw-r--r-- | view/theme/redbasic/css/style.css | 3 |
3 files changed, 8 insertions, 7 deletions
diff --git a/view/css/default.css b/view/css/default.css index 9abb69588..deb39fbe2 100644 --- a/view/css/default.css +++ b/view/css/default.css @@ -8,7 +8,7 @@ nav { background-color: #ff0000; } -aside { +aside#region_1 { display: block; width: 210px; position: absolute; @@ -17,6 +17,10 @@ aside { margin-left: 10px; } +aside input[type='text'] { + width: 174px; +} + section { position: absolute; diff --git a/view/php/default.php b/view/php/default.php index ae4da50b4..3573bf829 100644 --- a/view/php/default.php +++ b/view/php/default.php @@ -7,12 +7,12 @@ </head>
<body>
<?php if(x($page,'nav')) echo $page['nav']; ?>
- <aside><?php if(x($page,'aside')) echo $page['aside']; ?></aside>
- <section><?php if(x($page,'content')) echo $page['content']; ?>
+ <aside id="region_1"><?php if(x($page,'aside')) echo $page['aside']; ?></aside>
+ <section id="region_2"><?php if(x($page,'content')) echo $page['content']; ?>
<div id="page-footer"></div>
<div id="pause"></div>
</section>
- <right_aside><?php if(x($page,'right_aside')) echo $page['right_aside']; ?></right_aside>
+ <aside id="region_3"><?php if(x($page,'right_aside')) echo $page['right_aside']; ?></aside>
<footer><?php if(x($page,'footer')) echo $page['footer']; ?></footer>
</body>
</html>
diff --git a/view/theme/redbasic/css/style.css b/view/theme/redbasic/css/style.css index aef0d2eb6..e973b9c7c 100644 --- a/view/theme/redbasic/css/style.css +++ b/view/theme/redbasic/css/style.css @@ -1891,9 +1891,6 @@ a.mail-list-link { margin-top: 10px; } -aside input[type='text'] { - width: 174px; -} .widget, .pmenu { border-bottom: 1px solid #eec; |