Hi micadz,
I don't see it working in Featured; the left one is still lower. And in the index.php you supplied I do not see that you applied Esmi's trick.
I still would try to change this:
<div class="featured-content">
<?php the_excerpt(); ?>
<p class="moretext"><a href="<?php the_permalink() ?>">Continue Reading...</a></p>
</div> <!-- END Featured-Content -->
</div>
into this:
<div class="featured-content">
<?php the_excerpt(); ?>
</div> <!-- END Featured-Content -->
<p class="moretext"><a href="<?php the_permalink() ?>">Continue Reading...</a></p>
</div>
that is putting the p class moretext below te next div
If that works you have to do the same for latest-content which controls your Latest Posts.
INSTEAD of the above:
Also in style.css doing this cleaned up featured:
.featured-content p {style.css (regel 118)
height:170px;
margin-top:1em;
}
I added height 170px
Also in style.css doing this cleaned up the latest posts:
.latest-content p {style.css (regel 180)
color:#222222;
font-size:1.2em;
height:55px;
line-height:1.5;
margin-bottom:1.5em;
margin-top:8px;
text-align:left;
}
I added the height of 55px
Normally I use Stylizer, but you can see all this in Firefox, by using Firebug to show and test the code (you cannot save from firebug so the changes are temporarily and only visible on your computer, not for the public unless you copy them into your style.css)
Have a go and try it.