Cheers. Don’t know why I had such an issue with it.
I think I’ve got it sorted now. But how can I make a half size boxes on the page. So I can have two different category posts side by side on the page.
My code at the moment is:
<div class="post" id="post">
<fieldset>
<legend class='title'>
<a href="#" rel="bookmark"
title="#">Recent Posts</a>
</legend>
<div class="entry">
<?php c2c_get_recent_posts(5,"<li>%post_URL%<br />%post_excerpt%<br />%post_date% - %comments_fancy_URL%</li>"); ?>
</div>
<br />
<div class="postmetadata" style='opacity: 0.3;' onMouseOver='this.style.opacity = 1.0;' onMouseOut='this.style.opacity = 0.3;'>
<span id='commentlink' class='capsule'>
<a href="#">Read More</a>
</span>
</div>
</div>
Which takes up the whole width of the page with the post, I’ve been experimenting with CSS classes with width 50% but nothing seems to change. Any tips?