Angry Jew Cat - Banned for Life |
06-25-2007 03:59 AM |
Ultimate Tag Warrior, editting tag.php
Ok, I'm having one last little bit of trouble with getting UTW going, apparently i've narrowed it down to something wrong with my loop in tag.php. This is where my problems lies, as it's setting my sidebar off funny. the lop is contained within my cont div. and all he divs line up fine when i pull this section of the loop out. Could anybody point me in the right direction with getting this straight? Am I overlooking something REALLY retarded?..
Code:
<h1><?php UTW_ShowCurrentTagSet('tagsetcommalist') ?></h2>
<?php if (have_posts()) : ?>
<?php while (have_posts()) : the_post(); ?>
<div class="titles"><a href="<?php the_permalink() ?>" rel="bookmark" title="Permanent Link to <?php the_title(); ?>"><?php the_title(); ?></a></div>
<div class="linebreak"></div>
<div class="thebody">
<div id="post-<?php the_ID(); ?>">
<?php the_content('Read the rest of this entry »'); ?>
<div class="utwtags"><b>Tagged as:</b> <?php UTW_ShowTagsForCurrentPost("commalist") ?></div>
<div class="utwreltags"><b>Related tags:</b> <?php UTW_ShowRelatedTagsForCurrentPost("simplelist") ?>
<ul class="utwrelposts"><b>Related posts: </b><?php UTW_ShowRelatedPostsForCurrentPost("postcommalist") ?></ul>
</div>
<?php endwhile; ?>
<?php endif; ?>
|