I would like to make this section of my blog more clean I think the related topics mod is messing up my CSS for the forum topic link Blog Article in Question If I was to get help from someone here what php or html file should I post? I want this, Join the forum discussion on this post - (1) Post to sit above this, Did you miss these? Last 5 posts in Marketing Thanks so much! Brian
<?php include(TEMPLATEPATH."/config.inc.php");?> <?php get_header(); ?> <div id="content"> <!--single.php--> <!--loop--> <?php if (have_posts()) : while (have_posts()) : the_post(); ?> <!--post title--> <h1 id="post-<?php the_ID(); ?>"><a href="<?php echo get_permalink() ?>" rel="bookmark" title="Permanent Link: <?php the_title(); ?>"><?php the_title(); ?></a></h1> <!--Post Meta--> <div class="post-meta-top"> <div class="auth"><span>Posted by <strong><?php the_author_posts_link(); ?></strong></span></div> <div class="date"><span><?php the_time('F j, Y'); ?></span></div> <div class="clearboth"></div> </div> <br /> <!--content with more link--> <?php the_content('<p>Read the rest of this entry »</p>'); ?> <!--for paginate posts--> <?php link_pages('<p><strong>Pages:</strong> ', '</p>', 'number'); ?> <!--Post Meta--> <div class="post-meta-bottom"> <!--<?php if (function_exists('the_tags')) { ?><strong>Tags: </strong><?php the_tags('', ', ', ''); ?><br /><?php } ?>--> <div class="cat"><span><?php the_category(', ') ?></span></div> <div class="clearboth"></div> </div> <p><strong><em> Did you enjoy this post? Why not <a href="#comments">leave a comment below</a> and continue the conversation, or <a href="<?php if($db_feedburner_address) { echo $db_feedburner_address; } else { bloginfo('rss2_url'); } ?>">subscribe to my feed</a> and get articles like this delivered automatically to your feed reader. </em></strong></p> <a href="http://www.blogengage.com" onclick="window.location='http://www.blogengage.com/submit.php?url='+window.location; return false;"> <img src="http://www.blogengage.com/images/blogengageadd.gif" alt="Add to BlogEngage" border="0" /></a> <br /><br /> <p>Add it to your blog too!<br /><br /> <textarea name="textarea4" cols="60" id="textarea4"><a href="http://www.blogengage.com" onclick="window.location='http://www.blogengage.com/submit.php?url='+window.location; return false;"> <img src="http://www.blogengage.com/images/blogengageadd.gif" alt="Add to BlogEngage" border="0" /></a> </textarea> <br /> <!--include comments template--> <?php comments_template(); ?> <!--do not delete--> <?php endwhile; else: ?> Sorry, no posts matched your criteria. <!--do not delete--> <?php endif; ?> <!--single.php end--> </div> <!--include sidebar--> <?php get_sidebar();?> <!--include footer--> <?php get_footer(); ?> Code (markup):