Need some css or link placement help

Discussion in 'HTML & Website Design' started by bbrian017, Feb 9, 2009.

  1. #1
    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
     
    bbrian017, Feb 9, 2009 IP
  2. codecre8r

    codecre8r Well-Known Member

    Messages:
    148
    Likes Received:
    6
    Best Answers:
    0
    Trophy Points:
    128
    #2
    This is going to be in single.php for this theme. It should be very easy to fix.
     
    codecre8r, Feb 10, 2009 IP
  3. bbrian017

    bbrian017 Well-Known Member

    Messages:
    2,990
    Likes Received:
    66
    Best Answers:
    0
    Trophy Points:
    170
    #3
    <?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 &raquo;</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):
     
    bbrian017, Feb 10, 2009 IP