Dear Walkys lemaine,
We changed it for you.
1. go to your_site\templates\sj_vinda\html\com_k2\templates\sj-template\item.php
<?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; ?>
<?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; ?>
<!--add print email -->
<?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; ?>
<!--end print email -->
2. go to your_site/templates/sj_vinda/css/your_css.css and find:
div.itemToolbar {
background: none repeat scroll 0 0 rgba(0, 0, 0, 0);
border-bottom: 0 dotted #CCCCCC;
border-radius: 45px;
border-top: 0 dotted #CCCCCC;
margin: 16px 0 0;
padding: 2px 0;
}
=>
div.itemToolbar {
background: none repeat scroll 0 0 rgba(0, 0, 0, 0);
border-bottom: 0 dotted #CCCCCC;
border-radius: 45px;
border-top: 0 dotted #CCCCCC;
display: inline-block;
float: right;
margin: 0;
padding: 2px 0;
}
Please check your site again.
Thanks!