implement FS#33
This commit is contained in:
parent
dab1053406
commit
8014962640
2
404.php
2
404.php
|
@ -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>
|
||||
|
|
|
@ -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">
|
||||
|
|
|
@ -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">
|
||||
|
|
|
@ -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">
|
||||
|
|
|
@ -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">
|
||||
|
|
|
@ -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">
|
||||
|
|
|
@ -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>
|
||||
|
|
|
@ -1,6 +1,6 @@
|
|||
<?php get_header() ?>
|
||||
|
||||
<div id="column">
|
||||
<div id="content" class="narrowcolumn">
|
||||
|
||||
<?php if (have_posts()) : while (have_posts()) : the_post() ?>
|
||||
|
||||
|
|
|
@ -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 } ?>
|
||||
|
||||
|
|
|
@ -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">
|
||||
|
|
2
page.php
2
page.php
|
@ -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() ?>">
|
||||
|
|
|
@ -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() ?>
|
||||
|
||||
|
|
14
style.css
14
style.css
|
@ -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;
|
||||
}
|
||||
|
|
Loading…
Reference in New Issue