Hi Rick
While I totally agree with Tim in that the issue lies with the theme styles, I too was in the same boat as you in wanting to use this plugin with the iNove theme. I started looking through the code, and made one minor change in order to get it working with iNove.
This is somewhat ugly but it appears to work with iNove for me:
search for the code block below in the plugin file (note the block here has the <a> tags added to show you where).
$link_link_data = mysql_query("SELECT post_title FROM " . $posts_table . " WHERE link_link = '0' AND post_status = 'publish'");
while ($row = mysql_fetch_assoc($link_link_data)) {
extract($row);
$post_title = wptexturize($post_title);
$output = preg_replace('<a(.+)' . $post_title . '(.+)+/a>', '<a>'.$post_title.'</a>', $output);
}
I merely added empty anchor tags as part of the replacement for the link_link option.
Essentially the original line
$output = preg_replace('<a(.+)' . $post_title . '(.+)+/a>', $post_title, $output);
is replaced with
$output = preg_replace('<a(.+)' . $post_title . '(.+)+/a>', '<a>'.$post_title.'</a>', $output);
This approach to me was much easier than fiddling around with the css style sheet.
edit: 5th time lucky trying to format the code snippet correctly! sorry I'm being a wp forum noob. Apologies for the previous deleted post, I thought I had a bug with the update but then it seems to be working again now.
</Jason>