WordPress content is getting outside of the container

i am using WordPress together with Foundation to build my theme.
The content thats been created with WordPress keeps going outside the parent
container. The title stays inside its container but the

keeps getting out.

Read More

Here is my code:

<div class="row">
<div class="large-7 column">
<?php query_posts('cat=3&posts_per_page=6'); ?>
<?php while (have_posts()) : the_post(); ?>

<div id="post-<?php the_ID(); ?>" <?php post_class(); ?>>

<?php the_title('<h4 class="entry-title"><a href="' . get_permalink() . '" title="' .  
the_title_attribute('echo=0') . '" rel="bookmark">', '</a></h4>'); ?>

<div class="entry-content">
<p style="display:inline;"><?php the_content(__('Continue reading', 'example')); ?></p>

</div>
<p class="byline">
<span class="author vcard"><?php the_author_posts_link(); ?></span> <span class="sep">|                                                                                        
</span> 
<abbr class="published" title="<?php the_time(__('l, F jS, Y, g:i a', 'example')); ?>">  
<?php the_time(__('F j, Y', 'example')); ?></abbr>
<?php edit_post_link(__('Edit', 'example'), ' <span class="sep">|</span> <span    
class="edit">', '</span> '); ?>
</p>
</div> 

<?php endwhile;?>
</div>
<div class="large-5 column">

</div>
</div>

Thanks in advance

Related posts

Leave a Reply