Dear Walkys lemaine,
We're sorry, please go to your_site\templates\sj_vinda\html\com_k2\templates\sj-template\item.php and find:
<dl class="article-info">
<?php if($this->item->params->get('itemAuthor')): ?>
<!-- Item Author -->
<dd>
<span class="itemAuthor">
<i class="icon-user"></i>
<?php if(empty($this->item->created_by_alias)): ?>
<a rel="author" href="<?php echo $this->item->author->link; ?>"><?php echo $this->item->author->name; ?></a>
<?php else: ?>
<?php echo $this->item->author->name; ?>
<?php endif; ?>
</span>
</dd>
<?php endif; ?>
<?php if($this->item->params->get('itemDateCreated')): ?>
<!-- Date created -->
<dd>
<span class="itemDateCreated">
<i class="icon-calendar-empty"></i>
<?php echo JHTML::_('date', $this->item->created , JText::_('M d Y')); ?>
</span>
</dd>
<?php endif; ?>
<?php if($this->item->params->get('itemVideoAnchor') && !empty($this->item->video)): ?>
<!-- Anchor link to item video below - if it exists -->
<dd>
<a class="itemVideoLink k2Anchor" href="<?php echo $this->item->link; ?>#itemVideoAnchor"><?php echo JText::_('K2_MEDIA'); ?></a>
</dd>
<?php endif; ?>
<?php if($this->item->params->get('itemCommentsAnchor') && $this->item->params->get('itemComments') && ( ($this->item->params->get('comments') == '2' && !$this->user->guest) || ($this->item->params->get('comments') == '1')) ): ?>
<?php endif; ?>
</dl>
=>
<dl class="article-info">
<?php if($this->item->params->get('itemAuthor')): ?>
<!-- Item Author -->
<dd>
<span class="itemAuthor">
<i class="icon-user"></i>
<?php if(empty($this->item->created_by_alias)): ?>
<a rel="author" href="<?php echo $this->item->author->link; ?>"><?php echo $this->item->author->name; ?></a>
<?php else: ?>
<?php echo $this->item->author->name; ?>
<?php endif; ?>
</span>
</dd>
<?php endif; ?>
<?php if($this->item->params->get('itemDateCreated')): ?>
<!-- Date created -->
<dd>
<span class="itemDateCreated">
<i class="icon-calendar-empty"></i>
<?php echo JHTML::_('date', $this->item->created , JText::_('M d Y')); ?>
</span>
</dd>
<?php endif; ?>
<?php if($this->item->params->get('itemVideoAnchor') && !empty($this->item->video)): ?>
<!-- Anchor link to item video below - if it exists -->
<dd>
<a class="itemVideoLink k2Anchor" href="<?php echo $this->item->link; ?>#itemVideoAnchor"><?php echo JText::_('K2_MEDIA'); ?></a>
</dd>
<?php endif; ?>
<?php if($this->item->params->get('itemCommentsAnchor') && $this->item->params->get('itemComments') && ( ($this->item->params->get('comments') == '2' && !$this->user->guest) || ($this->item->params->get('comments') == '1')) ): ?>
<?php endif; ?>
</dl>
<?php if(
$this->item->params->get('itemPrintButton') ||
$this->item->params->get('itemEmailButton')
): ?>
<div class="itemToolbar">
<ul>
<?php if($this->item->params->get('itemPrintButton') && !JRequest::getInt('print')): ?>
<!-- Print Button -->
<li>
<a class="itemPrintLink" rel="nofollow" href="<?php echo $this->item->printLink; ?>" onclick="window.open(this.href,'printWindow','width=900,height=600,location=no,menubar=no,resizable=yes,scrollbars=yes'); return false;">
<i class="icon-print"></i><span><?php echo JText::_('K2_PRINT'); ?></span>
</a>
</li>
<?php endif; ?>
<?php if($this->item->params->get('itemEmailButton') && !JRequest::getInt('print')): ?>
<!-- Email Button -->
<li>
<a class="itemEmailLink" rel="nofollow" href="<?php echo $this->item->emailLink; ?>" onclick="window.open(this.href,'emailWindow','width=400,height=350,location=no,menubar=no,resizable=no,scrollbars=no'); return false;">
<i class="icon-envelope-alt"></i><span><?php echo JText::_('K2_EMAIL'); ?></span>
</a>
</li>
<?php endif; ?>
</ul>
<div class="clr"></div>
</div>
<?php endif; ?>
Thanks!