Hiyas!
I just rolled out the RMRH plugin onto my test install with no-conflict (prototype/jq) and it's working like a dream!
The only issue I have with it is the (more..) icon at the bottom of the post doesn't move, stays in the centre of the post and puts a horrible break into the middle of the post!
I've fiddled with it a bit but can't figure out how to amend this issue.
Here's my loop:
<?php if( is_home() && !is_paged() ):?>
<div id="post-start">
<?php if(have_posts()) : while(have_posts()) : the_post(); ?>
<h2 id="post-<?php the_ID(); ?>">
<a href="<?php the_permalink() ?>" rel="bookmark" title="Permanent Link to <?php the_title(); ?>">
<?php the_title(); ?></a></h2>
<small><?php the_time('F jS, Y') ?></small>
<br /><div class="entry">
<?php the_content() ?>
</div>
<?php endwhile; ?>
<?php endif; ?>
</div>
</div>
<div class="navigation">
<div class="alignleft"><?php posts_nav_link('','','« Previous') ?></div>
<div class="alignright"><?php posts_nav_link('','Next »','') ?></div>
</div>
</div>
<?php endif;?>
If anybody has any pointers or suggestions I'd be happy to Guinea Pig them! :p
Oh, and the test server URL is:
http://whatwebuild.com/blog/blog
Thanks!
J.