I found some bug of Joomla Module "Social Widgets Ultimate Edition"
This module had small bug (loss div one tag)
Module file name: mod_social_widgets.zip
Filename: mod_social_widgets.php
You mush add div tag on before end
if ($big_facebook == "show") { echo <<<EOT<iframe src="http://www.facebook.com/plugins/like.php?href=$social_url&layout=standard&show_faces=true&width=150&action=like&colorscheme=light&height=80" scrolling="no" frameborder="0" style="border:none; overflow:hidden; width:150px; height:80px;" allowTransparency="true"></iframe>EOT;}
if ($big_share_facebook == "show") { echo <<<EOT<a name="fb_share" type="button_count" href="http://www.facebook.com/sharer.php">Share</a><script src="http://static.ak.fbcdn.net/connect.php/js/FB.Share" type="text/javascript"></script><br/><br/>EOT;}
echo '</div>'; <----------------------------- Add this line
?>
