edits to everything

Signed-off-by: Philip M. Hofer (Frumph) <frumph_dragon@yahoo.com>
This commit is contained in:
Philip M. Hofer (Frumph) 2009-09-02 21:39:23 -07:00
parent 1d8aae13be
commit 91bbf499d4
21 changed files with 58 additions and 30 deletions

View File

@ -39,9 +39,12 @@ if (is_cp_theme_style('3c,v3c,gn,standard,v')) {
get_sidebar('right'); ?> get_sidebar('right'); ?>
<?php } ?> <?php } ?>
<?php if (is_cp_theme_style('standard,gn,3c')) { ?> <?php if (is_cp_theme_style('gn')) { ?>
</div>
<?php } ?>
<div class="clear"></div> <div class="clear"></div>
</div> <!-- end pageright-wrapper / content-wrapper --> </div> <!-- end pageright-wrapper / content-wrapper -->
<?php } ?>
<?php get_footer() ?> <?php get_footer() ?>

View File

@ -176,7 +176,7 @@ if (is_cp_theme_style('3c,v3c,gn,standard,v')) {
<?php } ?> <?php } ?>
<div class="clear"></div> <div class="clear"></div>
</div>
</div> <!-- end pageright-wrapper / content-wrapper --> </div> <!-- end pageright-wrapper / content-wrapper -->
<?php get_footer() ?> <?php get_footer() ?>

View File

@ -106,7 +106,7 @@ if (is_cp_theme_style('3c,v3c,gn,standard,v')) {
<?php } ?> <?php } ?>
<div class="clear"></div> <div class="clear"></div>
</div>
</div> <!-- end pageright-wrapper / content-wrapper --> </div> <!-- end pageright-wrapper / content-wrapper -->
<?php get_footer() ?> <?php get_footer() ?>

View File

@ -108,7 +108,7 @@ if (is_cp_theme_style('3c,v3c,gn,standard,v')) {
<?php } ?> <?php } ?>
<div class="clear"></div> <div class="clear"></div>
</div>
</div> <!-- end pageright-wrapper / content-wrapper --> </div> <!-- end pageright-wrapper / content-wrapper -->
<?php get_footer() ?> <?php get_footer() ?>

View File

@ -81,7 +81,7 @@ if (is_cp_theme_style('3c,v3c,gn,standard,v')) {
<?php } ?> <?php } ?>
<div class="clear"></div> <div class="clear"></div>
</div>
</div> <!-- end pageright-wrapper / content-wrapper --> </div> <!-- end pageright-wrapper / content-wrapper -->
<?php get_footer() ?> <?php get_footer() ?>

View File

@ -69,7 +69,7 @@ if (is_cp_theme_style('3c,v3c,gn,standard,v')) {
<?php } ?> <?php } ?>
<div class="clear"></div> <div class="clear"></div>
</div>
</div> <!-- end pageright-wrapper / content-wrapper --> </div> <!-- end pageright-wrapper / content-wrapper -->
<?php get_footer() ?> <?php get_footer() ?>

View File

@ -155,7 +155,7 @@ if (is_cp_theme_style('3c,v3c,gn,standard,v')) {
<?php } ?> <?php } ?>
<div class="clear"></div> <div class="clear"></div>
</div>
</div> <!-- end pageright-wrapper / content-wrapper --> </div> <!-- end pageright-wrapper / content-wrapper -->
<?php get_footer() ?> <?php get_footer() ?>

View File

@ -54,7 +54,7 @@ if (is_cp_theme_style('3c,v3c,gn,standard,v')) {
<?php } ?> <?php } ?>
<div class="clear"></div> <div class="clear"></div>
</div>
</div> <!-- end pageright-wrapper / content-wrapper --> </div> <!-- end pageright-wrapper / content-wrapper -->
<?php get_footer() ?> <?php get_footer() ?>

View File

@ -94,7 +94,7 @@ if (is_cp_theme_style('3c,v3c,gn,standard,v')) {
<?php } ?> <?php } ?>
<div class="clear"></div> <div class="clear"></div>
</div>
</div> <!-- end pageright-wrapper / content-wrapper --> </div> <!-- end pageright-wrapper / content-wrapper -->
<?php get_footer() ?> <?php get_footer() ?>

View File

@ -59,7 +59,7 @@ if (is_cp_theme_style('3c,v3c,gn,standard,v')) {
<?php } ?> <?php } ?>
<div class="clear"></div> <div class="clear"></div>
</div>
</div> <!-- end pageright-wrapper / content-wrapper --> </div> <!-- end pageright-wrapper / content-wrapper -->
<?php get_footer() ?> <?php get_footer() ?>

View File

@ -136,7 +136,7 @@ if (is_cp_theme_style('3c,v3c,gn,standard,v')) {
<?php } ?> <?php } ?>
<div class="clear"></div> <div class="clear"></div>
</div>
</div> <!-- end pageright-wrapper / content-wrapper --> </div> <!-- end pageright-wrapper / content-wrapper -->
<?php get_footer() ?> <?php get_footer() ?>

View File

@ -1,25 +1,25 @@
<?php <?php
//COMIC CATEGORY -the WordPress ID # of your comic category (default "3") //COMIC CATEGORY -the WordPress ID # of your comic category (default "3")
$comiccat = "4"; $comiccat = "3";
//BLOG CATEGORY - the WordPress ID of your blog category (default "1") //BLOG CATEGORY - the WordPress ID of your blog category (default "1")
$blogcat = "3"; $blogcat = "1";
//COMIC FOLDER - the folder your comics files are located in (default "comics") //COMIC FOLDER - the folder your comics files are located in (default "comics")
$comic_folder = "comics"; $comic_folder = "comics";
//RSS COMIC FOLDER - the folder your comic files are in for the RSS feed (default "comics") //RSS COMIC FOLDER - the folder your comic files are in for the RSS feed (default "comics")
$rss_comic_folder = "comics-rss"; $rss_comic_folder = "comics";
//ARCHIVE COMIC FOLDER - the folder your comic files are in for your archive pages (default "comics") //ARCHIVE COMIC FOLDER - the folder your comic files are in for your archive pages (default "comics")
$archive_comic_folder = "comics-archive"; $archive_comic_folder = "comics";
//ARCHIVE COMIC WIDTH - the width your comics will appear on archive or search results (default "380") //ARCHIVE COMIC WIDTH - the width your comics will appear on archive or search results (default "380")
$archive_comic_width = "380"; $archive_comic_width = "380";
//RSS COMIC WIDTH - ComicPress Manager plugin users only - the width your comics appear in the RSS feed (default "600"). //RSS COMIC WIDTH - ComicPress Manager plugin users only - the width your comics appear in the RSS feed (default "600").
$rss_comic_width = "180"; $rss_comic_width = "600";
//BLOG POSTCOUNT - the number of blog entries to appear on the home page (default "5"). //BLOG POSTCOUNT - the number of blog entries to appear on the home page (default "5").
$blog_postcount = "5"; $blog_postcount = "5";

View File

@ -1,5 +1,3 @@
<div class="clear"></div><!-- Clears floated columns and sidebars -->
<div id="footer"> <div id="footer">
<?php if (function_exists('the_project_wonderful_ad')) { ?> <?php if (function_exists('the_project_wonderful_ad')) { ?>
<div class="footerpwad"> <div class="footerpwad">

View File

@ -5,7 +5,7 @@ if (function_exists('id_get_comment_number')) {
remove_filter('comments_number','id_get_comment_number'); remove_filter('comments_number','id_get_comment_number');
} }
$comicpress_version = '2.8.0.R5'; $comicpress_version = '2.8.0.1';
// Remove the wptexturizer from changing the quotes and squotes. // Remove the wptexturizer from changing the quotes and squotes.
// remove_filter('the_title', 'wptexturize'); // remove_filter('the_title', 'wptexturize');

View File

@ -99,7 +99,7 @@ if (is_cp_theme_style('3c,v3c,gn,standard,v')) {
<?php } ?> <?php } ?>
<div class="clear"></div> <div class="clear"></div>
</div>
</div> <!-- end pageright-wrapper / content-wrapper --> </div> <!-- end pageright-wrapper / content-wrapper -->
<?php get_footer() ?> <?php get_footer() ?>

View File

@ -23,12 +23,12 @@
while ($comicFrontpage->have_posts()) : $comicFrontpage->the_post() ?> while ($comicFrontpage->have_posts()) : $comicFrontpage->the_post() ?>
<div id="comic-head"><?php get_sidebar('over'); ?></div> <div id="comic-head"><?php get_sidebar('over'); ?></div>
<?php get_sidebar('comicleft'); ?>
<div id="comic"> <div id="comic">
<?php get_sidebar('comicleft'); ?>
<?php display_comic(); ?> <?php display_comic(); ?>
<?php get_sidebar('comicright'); ?>
<div class="clear"></div>
</div> </div>
<?php get_sidebar('comicright'); ?>
<div class="clear"></div>
<div id="comic-foot"><?php get_sidebar('under'); ?></div> <div id="comic-foot"><?php get_sidebar('under'); ?></div>
<?php endwhile; ?> <?php endwhile; ?>
@ -112,7 +112,7 @@ if (is_cp_theme_style('3c,v3c,gn,standard,v')) {
<?php } ?> <?php } ?>
<div class="clear"></div> <div class="clear"></div>
</div>
</div> <!-- end pageright-wrapper / content-wrapper --> </div> <!-- end pageright-wrapper / content-wrapper -->
<?php get_footer() ?> <?php get_footer() ?>

View File

@ -67,4 +67,17 @@ if (is_cp_theme_style('3c,v3c,gn,standard,v')) {
</div> </div>
</div> <!-- end pageright-wrapper / content-wrapper --> </div> <!-- end pageright-wrapper / content-wrapper -->
<?php get_footer() ?><?php
if (is_cp_theme_style('3c,v3c,gn,standard,v')) {
get_sidebar('right'); ?>
<?php } ?>
<?php if (is_cp_theme_style('gn')) { ?>
</div>
<?php } ?>
<div class="clear"></div>
</div> <!-- end pageright-wrapper / content-wrapper -->
<?php get_footer() ?> <?php get_footer() ?>

View File

@ -52,7 +52,13 @@
if (is_cp_theme_style('3c,v3c,gn,standard,v')) { if (is_cp_theme_style('3c,v3c,gn,standard,v')) {
get_sidebar('right'); ?> get_sidebar('right'); ?>
<?php } ?> <?php } ?>
<?php if (is_cp_theme_style('gn')) { ?>
</div>
<?php } ?>
<div class="clear"></div> <div class="clear"></div>
</div> <!-- end pageright-wrapper / content-wrapper --> </div> <!-- end pageright-wrapper / content-wrapper -->
<?php get_footer() ?> <?php get_footer() ?>

View File

@ -138,7 +138,7 @@ if (is_cp_theme_style('3c,v3c,gn,standard,v')) {
<?php } ?> <?php } ?>
<div class="clear"></div> <div class="clear"></div>
</div>
</div> <!-- end pageright-wrapper / content-wrapper --> </div> <!-- end pageright-wrapper / content-wrapper -->
<?php get_footer() ?> <?php get_footer() ?>

View File

@ -19,12 +19,12 @@
if (in_comic_category()) { ?> if (in_comic_category()) { ?>
<div id="comic-head"><?php get_sidebar('over'); ?></div> <div id="comic-head"><?php get_sidebar('over'); ?></div>
<?php get_sidebar('comicleft'); ?>
<div id="comic"> <div id="comic">
<?php get_sidebar('comicleft'); ?>
<?php display_comic(); ?> <?php display_comic(); ?>
<?php get_sidebar('comicright'); ?>
<div class="clear"></div>
</div> </div>
<?php get_sidebar('comicright'); ?>
<div class="clear"></div>
<div id="comic-foot"><?php get_sidebar('under'); ?></div> <div id="comic-foot"><?php get_sidebar('under'); ?></div>
<?php } endwhile; ?> <?php } endwhile; ?>
@ -87,7 +87,7 @@ if (is_cp_theme_style('3c,v3c,gn,standard,v')) {
<?php } ?> <?php } ?>
<div class="clear"></div> <div class="clear"></div>
</div>
</div> <!-- end pageright-wrapper / content-wrapper --> </div> <!-- end pageright-wrapper / content-wrapper -->
<?php get_footer() ?> <?php get_footer() ?>

View File

@ -385,6 +385,14 @@ h3, h3 a {
padding-bottom: 5px; padding-bottom: 5px;
} }
#sidebar-comicleft {
float: left;
}
#sidebar-comicright {
float: right;
}
/* THE FOOTER */ /* THE FOOTER */