Hey guys:
Probably a quick fix - I can't find the .entry-title attribute in my theme's CSS, it's just not there - yet on my category page it keeps calling it and loading a non-existant image?
see http://www.thenewhustle.net/category/motivation
There's a line and an image I want to delete - but I can't find where it keeps getting called from. Tried everything in my category.php file: here's what it looks like:
<?php get_header(); ?>
<div id="content">
<?php $post = $posts[0]; ?>
<?php if (is_category()) : ?>
<h3 class="entry-title"><?php single_cat_title(); ?></h3>
<?php elseif (is_day()) : ?>
<h3 class="entry-title">Archive for <?php the_time('F jS, Y'); ?></h3>
<?php elseif (is_month()) : ?>
<h3 class="entry-title">Archive for <?php the_time('F, Y'); ?></h3>
<?php elseif (is_year()) : ?>
<h3 class="entry-title">Archive for <?php the_time('Y'); ?></h3>
<?php elseif( is_tag() ) : ?>
<h3 class="entry-title"><?php single_tag_title(); ?></h3>
<?php elseif (isset($_GET['paged']) && !empty($_GET['paged'])) : ?>
<h3 class="entry-title">Blog Archives</h3>
<?php endif; ?>
<?php $temp_category = single_cat_title('',false); if (!empty($temp_category)){ // give index ?>
<h1><?php single_cat_title(); ?></h1>
<p><?php echo(category_description(the_category_ID(false))); ?></p>
<?php if ($posts) : foreach ($posts as $post) : start_wp(); ?>
<?php endforeach; else: ?>
<p><?php _e('Sorry, no posts matched your criteria.'); ?></p>
<?php endif; ?>
<?php }else{ // give details or single post ?>
...... code for normal post overview
<?php } ?>
</div>
<?php get_footer(); ?>
Any help GREATLY appreciated - two hours of frustration!