implement FS#33

This commit is contained in:
John Bintz 2009-06-30 20:01:05 -04:00
parent dab1053406
commit 8014962640
13 changed files with 25 additions and 15 deletions

View File

@ -1,6 +1,6 @@
<?php get_header() ?>
<div id="column">
<div id="content" class="narrowcolumn">
<div class="post-page-head"></div>
<div class="post-page">
<h2 class="pagetitle">Page Not Found</h2>

View File

@ -116,7 +116,7 @@ $month['12'] = array('month' => 'December', 'days' => '31');
?>
<div id="column">
<div id="content" class="narrowcolumn">
<div class="post-page-head"></div>
<div class="post-page">

View File

@ -61,7 +61,7 @@ Template Name: Comic Storyline with Thumbs
</style>
<div id="column">
<div id="content" class="narrowcolumn">
<div class="post-page-head"></div>
<div class="post-page">

View File

@ -61,7 +61,7 @@ Template Name: Comic Storyline Archive
</style>
<div id="column">
<div id="content" class="narrowcolumn">
<div class="post-page-head"></div>
<div class="post-page">

View File

@ -33,7 +33,7 @@ Template Name: Comic Year Archive
}
</style>
<div id="column">
<div id="content" class="narrowcolumn">
<div class="post-page-head"></div>
<div class="post-page">

View File

@ -23,7 +23,7 @@ Template Name: Comic Archive
}
</style>
<div id="column">
<div id="content" class="narrowcolumn">
<div class="post-page-head"></div>
<div class="post-page">

View File

@ -6,7 +6,7 @@ Template Name: Archives
<?php get_header() ?>
<div id="column">
<div id="content" class="narrowcolumn">
<div class="post-page-head"></div>
<div class="post-page">
<h2>Archives by Month:</h2>

View File

@ -1,6 +1,6 @@
<?php get_header() ?>
<div id="column">
<div id="content" class="narrowcolumn">
<?php if (have_posts()) : while (have_posts()) : the_post() ?>

View File

@ -11,7 +11,7 @@
<div id="comic-foot"></div>
<?php endwhile; ?>
<div id="column">
<div id="content" class="narrowcolumn">
<?php while ($comicFrontpage->have_posts()) : $comicFrontpage->the_post() ?>
<div class="post-comic-head"></div>
@ -49,7 +49,7 @@
<?php } else { ?>
<div id="column">
<div id="content" class="narrowcolumn">
<?php } ?>

View File

@ -6,7 +6,7 @@ Template Name: Links
<?php get_header() ?>
<div id="column">
<div id="content" class="narrowcolumn">
<div class="post-page-head">
<div class="post-page">

View File

@ -1,6 +1,6 @@
<?php get_header() ?>
<div id="column">
<div id="content" class="narrowcolumn">
<?php if (have_posts()) : while (have_posts()) : the_post() ?>
<div class="post-page-head"></div>
<div class="post-page" id="post-<?php the_ID() ?>">

View File

@ -8,7 +8,7 @@
<div id="comic-foot"></div>
<?php } endwhile; ?>
<div id="column">
<div id="content" class="narrowcolumn">
<?php if (have_posts()) : while (have_posts()) : the_post() ?>

View File

@ -148,7 +148,7 @@ h3, h3 a, h3 a:hover {
/* THE PAGE WRAPPER */
/* Change this width to set the entire site's width - increase/reduce #column width by the same amount */
/* Change this width to set the entire site's width - increase/reduce #content width by the same amount */
#page {
width: 760px;
@ -375,13 +375,23 @@ h3, h3 a, h3 a:hover {
/* POSTS - PAGES */
#column {
#content {
width: 560px;
padding: 5px 0 20px 0;
float: left;
overflow: hidden;
}
.narrowcolumn
{
width: 560px;
}
.widecolumn
{
width: 760px;
}
.post, .post-comic, .post-page {
padding: 0 20px;
}