Hello everybody,
how can I move tags position inside k2 articles from left side to the bottom side?
Thank you!
P.
<?php if($params->get('itemTags') && count($this->item->tags)): ?>
<div class="itemTagsBlock">
<p><?php echo JText::_('K2_TAGGED_UNDER'); ?></p>
<?php foreach ($this->item->tags as $tag): ?>
<a href="<?php echo $tag->link; ?>"><?php echo $tag->name; ?>, </a>
<?php endforeach; ?>
</div>
<?php endif; ?>