Seichinha wrote:Hi
This must be done directly on this file: ../gk_sporter/html/com_k2/templates/default/item.php
inside of
- Code: Select all
<div class="itemToolbar">
Or if you don't want to, try adding this line on override.css file (not a good solution, but..):
- Code: Select all
span.itemTwitterLink {position: absolute;top:120px;left: 300px}
Hmmm, I used the 2nd line and that worked to move the Twitter link.
What I have done now is edit this in the item.php to leave just the facebook option for the Social Shareing links:
- Code: Select all
<div class="itemSocialLinksBlock">
<span><?php echo JText::_("Social sharing"); ?></span>
<ul class="itemSocialLinks">
<li><a class="facebook" title="<?php echo JText::_("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::_("Add to Facebook"); ?></span></a></li>
<li class="clr"></li>
</ul>
<div class="clr"></div>
But for some reason it still shows all the other links below.
Then I was going to use a similar line to move it next to the Twitter link but it isn't budging. I tried both itemSocialLinksBlock and itemSocialLinks.
And then to top it off my comments anchor has moved underneath haha! What have I done?!