I've got a issue with the 'Featured Post' block right underneath my header. Instead of generating a link to the displayed post, it simply reloads the home page.
Here's my domain, and here's the code that the bgr_board (featured post section) is running:
<div id="board">
<div id="board_post">
<h3>Featured Post</h3>
<?php $recent = new WP_Query("showposts=1&orderby=rand"); while($recent->have_posts()) : $recent->the_post();?>
<h2><?php the_title_limited(70); ?></h2>
<p><?php the_content_limit(300); ?></p>
<p>">Read More</p>
<?php endwhile; ?>
</div>
I'm pretty sure this is a permalink problem, but I've been reluctant to edit those settings, because I killed my domain for a few hours attempting to change them last time. Any help would be greatly appreciated.