Hi Kafkaesqui,
this is what it used to be in my css file,
#content #commentform input, #content #commentform textarea
{
background: #FFFFFF;
border: 1px solid #87B1EA;
font-size: 11px;
padding: 2px;
}
AND
#content code
{
color: #87B1EA
}
I just changed the color codes to so they’re now
#content #commentform input, #content #commentform textarea
{
background: #FFFFFF;
border: 1px solid #007FFF;
font-size: 11px;
padding: 2px;
}
AND
#content code
{
color: #7EC0EE
}
and uploaded it and refreshed the page and still have the same problem in all areas.
But I found out I have it all over. I have it in my comments-popup.php, comments.php, index.php, page.php, and pagewidthkomment.php. I’m not sure if I should just delete the “87B1EA” or change colors or get rid of the code in front or behind it too.
here’s the code, what do you think?
thanks
Pete
++++
comments-popup.php
<?php if ($comments) { ?>
<ol id="commentlist">
<?php foreach ($comments as $comment) { ?>
<li id="comment-<?php comment_ID() ?>">
<?php comment_text() ?>
<p><cite><?php comment_type(__('Comment'), __('Trackback'), __('Pingback')); ?> <?php _e("by"); ?> <?php comment_author_link() ?> WB1EA; <?php comment_date() ?> @ <a href="#comment-<?php comment_ID() ?>"><?php comment_time() ?></a></cite></p>
</li>
+++
comments.php
<?php foreach ($comments as $comment) : ?>
<li id="comment-<?php comment_ID() ?>">
<?php comment_text() ?>
<p><cite><?php comment_type(__('Comment'), __('Trackback'), __('Pingback')); ?> <?php _e('by'); ?> <?php comment_author_link() ?> WB1EA; <?php comment_date() ?> @ <a href="#comment-<?php comment_ID() ?>"><?php comment_time() ?></a></cite> <?php edit_comment_link(__("Edit This"), ' |'); ?></p>
</li>
+++
index.php
<div style="margin: 10px 0 10px 0"><?php posts_nav_link(' WB1EA; ', __('« Previous Page'), __('Next Page »')); ?></div>
<?php get_footer(); ?>
++++
page.php
<?php endif; ?>
<div style="margin: 10px 0 10px 0"><?php posts_nav_link(' WB1EA; ', __('« Previous Page'), __('Next Page »')); ?></div>
<?php get_footer(); ?>
++++
pagewidthkomment.php
<h3 class="storytitle" id="post-<?php the_ID(); ?>"><a href="<?php the_permalink() ?>" rel="bookmark"><?php the_title(); ?></a></h3>
<div class="meta"><?php _e("Filed under:"); ?> <?php the_category(',') ?> WB1EA; <?php the_author() ?> @ <?php the_time() ?> <?php edit_post_link(__('Edit This')); ?></div>
AND
<div style="margin: 10px 0 10px 0"><?php posts_nav_link(' WB1EA; ', __('« Previous Page'), __('Next Page »')); ?></div>
<?php get_footer(); ?>