An "Â" is appearing before each double space I have in a post. The page it appears on is a nonblog page calling blog content:
<?php query_posts('posts_per_page=5'); ?>
<?php if ( have_posts() ) : while ( have_posts() ) : the_post(); ?>
<div id="maincont">
<h2><a id="posttitle" href="<?php the_permalink() ?>" rel="bookmark" title="Link to <?php the_title_attribute(); ?>"><?php the_title(); ?></a> </h2>
<p id="postinfo"><?php the_time() ?> <?php the_time('F jS, Y') ?> by <?php the_author_posts_link() ?> in <?php the_category(', '); ?></p>
<div class="entry">
<?php the_content(); ?>
</div>
<p id="small" align="right"><a href="<?php comments_link(); ?>"><?php comments_number('No Comments','1 Comment','% Comments'); ?></a></p>
</div>
<?php endwhile; else: ?>
<div id="maincont">
<p>Blablabla</p>
</div>
<?php endif; ?>
The double space is still showing up, but the "Â" thing is showing up before it. How do I stop that from showing up? It is not showing up on the actual blog portion of the site. Sorry if it is a simple question, but don't really know where to look for the answer.