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() ?> <?php get_header() ?>
<div id="column"> <div id="content" class="narrowcolumn">
<div class="post-page-head"></div> <div class="post-page-head"></div>
<div class="post-page"> <div class="post-page">
<h2 class="pagetitle">Page Not Found</h2> <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-head"></div>
<div class="post-page"> <div class="post-page">

View File

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

View File

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

View File

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

View File

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

View File

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

View File

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

View File

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

View File

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

View File

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

View File

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

View File

@ -148,7 +148,7 @@ h3, h3 a, h3 a:hover {
/* THE PAGE WRAPPER */ /* 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 { #page {
width: 760px; width: 760px;
@ -375,13 +375,23 @@ h3, h3 a, h3 a:hover {
/* POSTS - PAGES */ /* POSTS - PAGES */
#column { #content {
width: 560px; width: 560px;
padding: 5px 0 20px 0; padding: 5px 0 20px 0;
float: left; float: left;
overflow: hidden; overflow: hidden;
} }
.narrowcolumn
{
width: 560px;
}
.widecolumn
{
width: 760px;
}
.post, .post-comic, .post-page { .post, .post-comic, .post-page {
padding: 0 20px; padding: 0 20px;
} }