Removed the var_dump I accidently left in buystrip.php, tried to play with the id => again in the register sidebar, note: john, yah doesnt work appropriately with changing on off of the sidebar registers - modified comments code yet again fixing it all up, #comment *at the top* is now #comment-wrapper
Signed-off-by: Philip M. Hofer (Frumph) <frumph_dragon@yahoo.com>
This commit is contained in:
parent
de54c9bc20
commit
e18b94e9a1
|
@ -12,7 +12,7 @@ Templete Author Email: philip@frumph.net
|
|||
|
||||
<?php if (!empty($comicnum)): ?>
|
||||
<?php $temppost = $post; ?>
|
||||
<?php $post = & get_post( $comicnum ); var_dump($post);?>
|
||||
<?php $post = & get_post( $comicnum ); ?>
|
||||
<div class="<?php comicpress_post_class(); ?>">
|
||||
<div class="post-page-head"></div>
|
||||
<div class="post-page">
|
||||
|
|
|
@ -728,7 +728,7 @@ add_filter('the_content','insert_comic_feed');
|
|||
// Register Sidebar and Define Widgets
|
||||
|
||||
if ( function_exists('register_sidebar') ) {
|
||||
register_sidebar(array('name'=>'Left Sidebar','before_widget' => '
|
||||
register_sidebar(array('name'=>'Left Sidebar', 'before_widget' => '
|
||||
<div id="%1$s" class="widget %2$s">
|
||||
','after_widget' => '
|
||||
</div>','before_title' => '<h2 class="widgettitle">', 'after_title' => '</h2>
|
||||
|
|
|
@ -6,6 +6,20 @@ Style: Default
|
|||
text-align: center;
|
||||
}
|
||||
|
||||
.comic_navi_left {
|
||||
display: inline-block;
|
||||
float: left;
|
||||
}
|
||||
|
||||
.comic_navi_center {
|
||||
display: inline-block;
|
||||
}
|
||||
|
||||
.comic_navi_right {
|
||||
display: inline-block;
|
||||
float: right;
|
||||
}
|
||||
|
||||
.comic_navi {
|
||||
width: 100%;
|
||||
background: #000;
|
||||
|
@ -19,7 +33,15 @@ Style: Default
|
|||
.navi-comictitle {
|
||||
padding: 0px 10px;
|
||||
text-align: center;
|
||||
display: inline-block;
|
||||
}
|
||||
.navi-comictitle a {
|
||||
color: #fff;
|
||||
}
|
||||
|
||||
.navi-comictitle a:hover {
|
||||
color: #f00;
|
||||
}
|
||||
|
||||
.navi {
|
||||
padding: 0 10px;
|
||||
|
@ -58,12 +80,15 @@ Style: Default
|
|||
}
|
||||
|
||||
.navi-buyprint {
|
||||
display: inline-block;
|
||||
color: #000;
|
||||
}
|
||||
|
||||
.navi-buyprint:hover, button .navi-buyprint:hover {
|
||||
}
|
||||
|
||||
.navi-buyprint-form {
|
||||
display: inline-block;
|
||||
}
|
||||
|
||||
.navi-archive, .navi-archives {
|
||||
|
|
10
style.css
10
style.css
|
@ -16,7 +16,7 @@ http://www.opensource.org/licenses/gpl-3.0.html
|
|||
body {
|
||||
margin: 0;
|
||||
font-family: 'Arial', sans-serif;
|
||||
font-size: 11px;
|
||||
font-size: 13px;
|
||||
color: #000;
|
||||
}
|
||||
|
||||
|
@ -342,7 +342,6 @@ h3, h3 a {
|
|||
}
|
||||
|
||||
#comic {
|
||||
padding: 5px 0;
|
||||
text-align: center;
|
||||
}
|
||||
|
||||
|
@ -583,9 +582,7 @@ a.navi-comments:hover span {
|
|||
|
||||
#comment-wrapper {
|
||||
margin-top: 5px;
|
||||
padding: 0 20px;
|
||||
font-size: 12px;
|
||||
font-family: 'Arial' , sans-serif;
|
||||
}
|
||||
.comment {
|
||||
padding: 2px;
|
||||
|
@ -598,8 +595,9 @@ a.navi-comments:hover span {
|
|||
|
||||
|
||||
.comment .avatar {
|
||||
margin: 0 10px 5px 0;
|
||||
margin: 0 5px 5px 0;
|
||||
float: left;
|
||||
display: inline-block;
|
||||
}
|
||||
|
||||
.comment .trackping {
|
||||
|
@ -624,7 +622,7 @@ a.navi-comments:hover span {
|
|||
|
||||
.comment-meta-data {
|
||||
background: #eee;
|
||||
border-bottom: solid 1px #000;
|
||||
border-bottom: solid 1px #999;
|
||||
margin: 0;
|
||||
padding: 0;
|
||||
}
|
||||
|
|
Loading…
Reference in New Issue