Looking at your post history, this looks the thread you're referring to:
www.sourcecoast.com/forums/jfbconnect/jf...ntent-plugin-k2-like
In the newest version of the content plugin around line 212, here's the existing code:
if(!empty( $likeHTML ) || !empty( $likeExtraHTML ))
{
$btnHTML .= '<div style="position: relative; top:0px; left:0px; z-index: 99;" class="scsocialbuttons '.$buttonStyle.'">';
$btnHTML .= $likeExtraHTML;
$btnHTML .= $likeHTML;
$btnHTML .= '</div><div style="clear:both"></div>';
}
Try changing it to switch the like button and other buttons like in Alex's previous suggestion:
if(!empty( $likeHTML ) || !empty( $likeExtraHTML ))
{
$btnHTML .= '<div style="position: relative; top:0px; left:0px; z-index: 99;" class="scsocialbuttons '.$buttonStyle.'">';
$btnHTML .= $likeHTML;
$btnHTML .= $likeExtraHTML;
$btnHTML .= '</div><div style="clear:both"></div>';
}
Note, this is untested, so let us know if that doesn't work.
-Melissa