K2 have option to show the Readmore button. In this case, open to edit K2 category “My Blog”, and choose to show Readmore link in parameter group “Item view options in category listings”.
To make the “Read more” button lies on the same line with Comment link, you should open file “templatesja_socialhtmlcom_k2templatesja_social_blogcategory_item.php”, search the code show read more button:
[php]
<?php if ($this->item->params->get(‘catItemReadMore’)): ?>
<!– Item “read more…” link –>
<p class=”readmore”>
<a href=”<?php echo $this->item->link; ?>”>
<?php echo JText::_(‘Read more…’); ?>
</a>
</p>
<?php endif; ?>
[/php]
Move this block of code to bellow the line show blog content
[php]
<!– Item introtext –>
<div class=”catItemIntroText clearfix”>
<?php echo $this->item->introtext; ?>
<?php if ($this->item->params->get(‘catItemReadMore’)): ?>
<!– Item “read more…” link –>
<p class=”readmore”>
<a href=”<?php echo $this->item->link; ?>”>
<?php echo JText::_(‘Read more…’); ?>
</a>
</p>
<?php endif; ?>
</div>
<?php endif; ?>
[/php]