undoing accidental commit

This commit is contained in:
real_nowhereman 2008-02-19 20:03:41 +00:00
parent 2a9f3dbafb
commit df78f3176a
2 changed files with 10 additions and 12 deletions

View File

@ -14,7 +14,7 @@ Module: style.css
/* ===== COLUMN ===== */ /* ===== COLUMN ===== */
.column { #column {
float: right; float: right;
width: 195px !important; width: 195px !important;
width: 180px; width: 180px;
@ -26,25 +26,25 @@ Module: style.css
border-left: solid 1px #ccc border-left: solid 1px #ccc
} }
.column h4 { #column h4 {
/* Titles of the sections */ /* Titles of the sections */
margin-bottom: .5em; margin-bottom: .5em;
} }
.column p, .column div { margin: 10px 5px } #column p, #column div { margin: 10px 5px }
.column a:link, .column a:visited { color: gray } #column a:link, #column a:visited { color: gray }
/* === List === */ /* === List === */
.column ul li table { font-size: 100% } #column ul li table { font-size: 100% }
.column ul { #column ul {
list-style-type: none; list-style-type: none;
margin-right: 10px; margin-right: 10px;
margin-bottom: .5em; margin-bottom: .5em;
padding-left: 1em padding-left: 1em
} }
.column fieldset { margin: 0 5px 0 5px } #column fieldset { margin: 0 5px 0 5px }
.column legend { font-size: 100% } #column legend { font-size: 100% }

View File

@ -1,22 +1,20 @@
<div id="column">
<div id="col-right" class="column">
{widgets pos=right} {widgets pos=right}
<div id="{$id}"> <div id="{$id}">
<h4>{$subject}</h4> <h4>{$subject}</h4>
{$content} {$content}
</div> </div>
{/widgets} {/widgets}
</div> <!-- end of #col-right -->
<div id="col-left" class="column">
{widgets pos=left} {widgets pos=left}
<div id="{$id}"> <div id="{$id}">
<h4>{$subject}</h4> <h4>{$subject}</h4>
{$content} {$content}
</div> </div>
{/widgets} {/widgets}
</div> <!-- end of #col-left -->
</div>