Go to your theme settings, and go to page.php. After that look for the code that looks like this:
<div id="post-<?php the_ID(); ?>" <?php post_class(); ?>>
<h2 class="entry-title"><?php the_title(); ?></h2>
<div class="linebreak clear"></div>
<div class="entry-content">
Once you found that code, replace it with this:
<div id="post-<?php the_ID(); ?>" <?php post_class(); ?>>
<h2 class="entry-title"><?php the_title(); ?></h2>
<div class="linebreak"></div>
<div class="entry-content">
What I did was remove the "clear" from the linebreak, which means it would get its original styling and not the clear one.