clean up the default page definition - get rid of right_aside which is illegal
This commit is contained in:
parent
398162f78a
commit
3f79a9581a
@ -8,7 +8,7 @@ nav {
|
|||||||
background-color: #ff0000;
|
background-color: #ff0000;
|
||||||
}
|
}
|
||||||
|
|
||||||
aside {
|
aside#region_1 {
|
||||||
display: block;
|
display: block;
|
||||||
width: 210px;
|
width: 210px;
|
||||||
position: absolute;
|
position: absolute;
|
||||||
@ -17,6 +17,10 @@ aside {
|
|||||||
margin-left: 10px;
|
margin-left: 10px;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
aside input[type='text'] {
|
||||||
|
width: 174px;
|
||||||
|
}
|
||||||
|
|
||||||
|
|
||||||
section {
|
section {
|
||||||
position: absolute;
|
position: absolute;
|
||||||
|
@ -7,12 +7,12 @@
|
|||||||
</head>
|
</head>
|
||||||
<body>
|
<body>
|
||||||
<?php if(x($page,'nav')) echo $page['nav']; ?>
|
<?php if(x($page,'nav')) echo $page['nav']; ?>
|
||||||
<aside><?php if(x($page,'aside')) echo $page['aside']; ?></aside>
|
<aside id="region_1"><?php if(x($page,'aside')) echo $page['aside']; ?></aside>
|
||||||
<section><?php if(x($page,'content')) echo $page['content']; ?>
|
<section id="region_2"><?php if(x($page,'content')) echo $page['content']; ?>
|
||||||
<div id="page-footer"></div>
|
<div id="page-footer"></div>
|
||||||
<div id="pause"></div>
|
<div id="pause"></div>
|
||||||
</section>
|
</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>
|
<footer><?php if(x($page,'footer')) echo $page['footer']; ?></footer>
|
||||||
</body>
|
</body>
|
||||||
</html>
|
</html>
|
||||||
|
@ -1891,9 +1891,6 @@ a.mail-list-link {
|
|||||||
margin-top: 10px;
|
margin-top: 10px;
|
||||||
}
|
}
|
||||||
|
|
||||||
aside input[type='text'] {
|
|
||||||
width: 174px;
|
|
||||||
}
|
|
||||||
|
|
||||||
.widget, .pmenu {
|
.widget, .pmenu {
|
||||||
border-bottom: 1px solid #eec;
|
border-bottom: 1px solid #eec;
|
||||||
|
Reference in New Issue
Block a user