I\'m using the comments facebook social plugin When I embed it, the script created an iFrame that has the text \"Facebook social plugin\" with the facebook logo at the botto
The other solutions have the side effect of pushing things down. Here's a Less/Sass/SCSS solution that accounts for the pull down:
div.fb_iframe_widget span {
overflow: hidden;
margin-top: -32px;
iframe {
top: 32px;
}
}
They've set the iframe to position: absolute, presumably to reduce your chances of pulling this off. That makes top easy to set, and voila.
They also set their iframe to overflow: hidden, so you can attack that with a shorter style if you prefer, and just end up with a larger gap at bottom of the comments box:
div.fb_iframe_widget iframe {
box-sizing: border-box;
padding-bottom: 32px;
}
Chomp.