Hi there,
I've just changed my H2 tags to H1 titles instead (for SEO purposes) and an issue with the FEATURED <sup> seems to have occured.
On the attachments you can see the way it did look (the correct way - in Red next to the Title) and the way it looks now (which doesn't look great underneath the Title)
The code below is the 'item.php' in my templates/cloudbase3/html/com_k2/default folder: At present I've moved the closing </h1> above the 'Featured Flag area....instead of the end of this code - as it had also turned the <sup> to H1 size as well!
<h1 class="itemTitle">
<?php if(isset($this->item->editLink)): ?>
<!-- Item edit link -->
<span class="itemEditLink">
<a data-k2-modal="edit" href="<?php echo $this->item->editLink; ?>"><?php echo JText::_('K2_EDIT_ITEM'); ?></a>
</span>
<?php endif; ?>
<?php echo $this->item->title; ?>
</h1>
<?php if($this->item->params->get('itemFeaturedNotice') && $this->item->featured): ?>
<!-- Featured flag -->
<span>
<sup>
<?php echo JText::_('K2_FEATURED'); ?>
</sup>
</span>
<?php endif; ?>
Any idea how get it back to way it was looking...and with a h1 tag??