right now the social icons open in the same window as the page.
i would like to have a new tab for opening them, so the page stays.
where can i add in the "_blank" tag?
thx for your help.
<div id="social-icons">
<a href="<?php echo $this->_tpl->params->get('social_twitter','#'); ?>" class="socialicon" id="social_twitter">Twitter</a>
<a href="<?php echo $this->_tpl->params->get('social_facebook','#'); ?>" class="socialicon" id="social_facebook">Facebook</a>
<a href="<?php echo $this->_tpl->params->get('social_email','#'); ?>" class="socialicon" id="social_email">E-mail</a>
<a href="<?php echo $this->_tpl->params->get('social_rss','#'); ?>" class="socialicon" id="social_rss">RSS</a>
</div>
<?php if($this->getParam('social_icons',1)) : ?>
<div id="social-icons">
<a href="<?php echo $this->getParam('social_twitter','#'); ?>" class="socialicon" id="social_twitter">Twitter</a>
<a href="<?php echo $this->getParam('social_facebook','#'); ?>" class="socialicon" id="social_facebook">Facebook</a>
<a href="<?php echo $this->getParam('social_email','#'); ?>" class="socialicon" id="social_email">E-mail</a>
<a href="<?php echo $this->getParam('social_rss','#'); ?>" class="socialicon" id="social_rss">RSS</a>
</div>
<?php endif; ?>