Dear marc trimble,
If in your K2 Category manager, you choose 'yt-theme' in 'Select a template' field, please go to file category_item_links.php in yoursite/templates/sj_worldnews/html/com_k2/templates/yt-theme.
If in your K2 Category manager, you choose '-- Use default --' in 'Select a template' field, please go to category_item_links.php in yoursite/components/com_k2/templates/default.
Please cut the code:
<!-- Item title -->
<h3 class="catItemTitle">
<?php if ($this->item->params->get('catItemTitleLinked')): ?>
<a href="<?php echo $this->item->link; ?>">
<?php echo $this->item->title; ?>
</a>
<?php else: ?>
<?php echo $this->item->title; ?>
<?php endif; ?>
</h3>
And paste it after the code:
<?php if($this->item->params->get('catItemImage') && !empty($this->item->image)): ?>
<!-- Item Image -->
<div class="catItemImageBlock">
<span class="catItemImage">
<a href="<?php echo $this->item->link; ?>" title="<?php if(!empty($this->item->image_caption)) echo K2HelperUtilities::cleanHtml($this->item->image_caption); else echo K2HelperUtilities::cleanHtml($this->item->title); ?>">
<img src="<?php echo $this->item->image; ?>" alt="<?php if(!empty($this->item->image_caption)) echo K2HelperUtilities::cleanHtml($this->item->image_caption); else echo K2HelperUtilities::cleanHtml($this->item->title); ?>" style="width:<?php echo $this->item->imageWidth; ?>px; height:auto;" />
</a>
</span>
<div class="clr"></div>
</div>
<?php endif; ?>
About the "Read more" button:
Please open k2.css file (yoursite/components/com_k2/css/k2.css) and find:
div.catItemReadMore {
display: inline;
}
=>
div.catItemReadMore {
display: inline;
float: right;
}
Thanks