Hi,
Open: \templates\gk_twn2\html\com_k2\templates\default\item.php
Find: 
- Code: Select all
- <?php if($this->item->params->get('itemShareLinks')): ?>
 
 <!-- Item social links -->
 
 <div class="itemSocialLinksBlock">
 <span><?php echo JText::_('K2_SOCIAL_SHARING'); ?></span>
 <ul class="itemSocialLinks">
 <li><a class="googlebuzz" title="<?php echo JText::_('K2_ADD_TO_GOOGLE_BUZZ'); ?>" href="http://www.google.com/buzz/post?url=<?php echo $this->item->socialLink; ?>&message=<?php echo urlencode($this->item->title); ?>" target="_blank"><span><?php echo JText::_('K2_ADD_TO_GOOGLE_BUZZ'); ?></span></a></li>
 
 <li><a class="facebook" title="<?php echo JText::_('K2_ADD_TO_FACEBOOK'); ?>" href="http://www.facebook.com/sharer.php?u=<?php echo $this->item->socialLink; ?>&t=<?php echo urlencode($this->item->title); ?>" target="_blank"><span><?php echo JText::_('K2_ADD_TO_FACEBOOK'); ?></span></a></li>
 
 <li><a class="delicious" title="<?php echo JText::_('K2_ADD_TO_DELICIOUS'); ?>" href="http://del.icio.us/post?url=<?php echo $this->item->socialLink; ?>&title=<?php echo urlencode($this->item->title); ?>" target="_blank"><span><?php echo JText::_('K2_ADD_TO_DELICIOUS'); ?></span></a></li>
 
 <li><a class="digg" title="<?php echo JText::_('K2_DIGG_THIS'); ?>" href="http://digg.com/submit?url=<?php echo $this->item->socialLink; ?>&title=<?php echo urlencode($this->item->title); ?>" target="_blank"><span><?php echo JText::_('K2_DIGG_THIS'); ?></span></a></li>
 
 <li><a class="reddit" title="<?php echo JText::_('K2_ADD_TO_REDDIT'); ?>" href="http://reddit.com/submit?url=<?php echo $this->item->socialLink; ?>&title=<?php echo urlencode($this->item->title); ?>" target="_blank"><span><?php echo JText::_('K2_ADD_TO_REDDIT'); ?></span></a></li>
 
 <li><a class="stumble" title="<?php echo JText::_('K2_ADD_TO_STUMBLEUPON'); ?>" href="http://www.stumbleupon.com/submit?url=<?php echo $this->item->socialLink; ?>&title=<?php echo urlencode($this->item->title); ?>" target="_blank"><span><?php echo JText::_('K2_ADD_TO_STUMBLEUPON'); ?></span></a></li>
 
 <li><a class="myspace" title="<?php echo JText::_('K2_ADD_TO_MYSPACE'); ?>" href="http://www.myspace.com/Modules/PostTo/Pages/?l=3&u=<?php echo $this->item->socialLink; ?>&t=<?php echo urlencode($this->item->title); ?>" target="_blank"><span><?php echo JText::_('K2_ADD_TO_MYSPACE'); ?></span></a></li>
 
 <li><a class="technorati" title="<?php echo JText::_('K2_ADD_TO_TECHNORATI'); ?>" href="http://www.technorati.com/faves?add=<?php echo $this->item->socialLink; ?>" target="_blank"><span><?php echo JText::_('K2_ADD_TO_TECHNORATI'); ?></span></a></li>
 <li class="clr"></li>
 </ul>
 <div class="clr"></div>
 </div>
 <?php endif; ?>
 
Move before:
- Code: Select all
- <div id="k2Container" class="itemView<?php echo ($this->item->featured) ? ' itemIsFeatured' : ''; ?><?php if($this->item->params->get('pageclass_sfx')) echo ' '.$this->item->params->get('pageclass_sfx'); ?>">
 
Then tell me if it helps!