I'm trying to hide the border around Facebook Like Box
tried this method `<div class="facebook-like-box">
<div class="inner">
<!-- Facebook Plugin Code --->
<script src="http://connect.facebook.net/en_US/all.js#xfbml=1"></script>
<fb:like-box href="http://www.facebook.com/pages/mypage/18267678998894"
width="250" height="250"
colorscheme="light" show_faces="true"
stream="false" header="false"></fb:like-box>
<!-- End Facebook Plugin Code -->
</div>
</div>
and afterwards adding `.facebook-like-box
{
width: 250px;
height: 250px;
overflow: hidden;
position: relative; /* For IE7 Compatibility */
}
.facebook-like-box .inner
{
margin: -2px 0 0 -2px;
}`
But this brings me another problema adding a blue box with "Find us on Facebook"
Can anyone help me with another method or a way to hide this "Find us on Facebook"
Thanks in advance
Fred
http://wordpress.org/extend/plugins/jetpack/
[Moderator Note: Please post code or markup snippets between backticks or use the code button. As it stands, your code may now have been permanently damaged/corrupted by the forum's parser.]