Taken from my blog, you can see the Facebook likebox here, just to change the Facebook look of the iframe
, can't change the css
, AFAIK
CSS
.sidebar-box {
width:260px;
margin-bottom: 30px;
padding: 20px;
border: 1px solid #E3E3E3;
-webkit-border-radius: 5px;
-moz-border-radius: 5px;
border-radius: 5px;
-moz-box-shadow: 0px 0px 8px #ddd;
-webkit-box-shadow: 0px 0px 8px #DDD;
box-shadow: 0px 0px 8px #DDD;
}
HTML
<div class="sidebar-box">
<iframe src="..." scrolling="no" frameborder="0" style="border:none; overflow:hidden; width:292px; height:258px;margin-left:-17px;" allowtransparency="true"></iframe>
</div>
DEMO1 and DEMO2.