I am getting a weird thing in my static pages. For some reason they are adding a bunch of extra divs or p tags. I have been racking my brain trying to figure it out.
here are the pages this is happening on:
http://16volt.com/music
http://16volt.com/tour
and here is my template code for the page:
<div id="fullpage">
<?php if ( have_posts() ) : while ( have_posts() ) : the_post(); ?>
<?php the_content(); ?>
<?php endwhile; else: ?>
<?php _e('Bad robot. Bad!'); ?>
<?php endif; ?>
</div>
any help is greatly appreciated!