I created a custom theme, so I don't know if this is my bug or if it came from a recent update. But I've noticed that a <p/> is inserted between the post heading and content paragraph when that code is not present in the original post and this is in all the slides.
Here is my display.php code:
<?php if ($options['section_display']==1): ?><h2><?php echo $options['section_title']?></h2><?php endif;?>
<div class="FA_overall_container_medcure-light FA_slider" style="<?php echo $styles['x'];?>" id="<?php echo $FA_slider_id;?>"> <div class="FA_featured_articles" style="<?php echo $styles['y'];?>">
<?php foreach ($postslist as $post):?>
<div class="FA_article">
<div class="FA_wrap">
<?php if( $image = FA_article_image($post, $slider_id) ):?>
<div class="image_container"><img src="<?php echo $image;?>" alt="<?php the_title('','');?>" class="FA_image" width="<?php echo $options['th_width'];?>" height="<?php echo $options['th_height'];?>" /></div>
<?php endif;?>
<h2><?php if( $options['title_click'] ):?><a href="<?php the_permalink();?>" title="<?php the_title();?>"><?php endif;?><?php the_title();?><?php if( $options['title_click'] ):?></a><?php endif;?></h2>
<p><?php echo FA_truncate_text($post->post_content, $image ? $options['desc_truncate'] : $options['desc_truncate_noimg']);?></p>
</div>
</div>
<?php endforeach;?>
</div>
<div class="swoopimg"></div>
<?php if( $options['bottom_nav'] && count($postslist) > 1 ):?>
<ul class="FA_navigation">
<?php foreach ($postslist as $k=>$post):?>
<li<?php if($k==0):?> class="first"<?php endif;?>>
<span class="FA_current"><?php the_title();?></span>
<a href="#" title=""></a>
</li>
<?php endforeach;?>
</ul>
<?php endif;?>
<?php if( $options['sideways_nav'] && count($postslist) > 1 ):?>
<a href="#" title="<?php __('Previous post');?>" class="FA_back"></a>
<a href="#" title="<?php __('Next post');?>" class="FA_next"></a>
<?php endif;?>
</div>
Thanks!