Would be nice if u pasted your actual code or link to your site where u have the problem. Might be problem also with the div u are putting those buttons in.
This is example of mine Like button and it doesn't have any iframe. U might be using older version of the sample code or I don't know.
<div class="fb-like" data-href="http://www.website.cz/actualpage.html" data-send="true" data-width="450" data-show-faces="false" data-colorscheme="dark" data-font="trebuchet ms"></div>
As it was already linked in here. Don't forget to generate code from the official FB site - https://developers.facebook.com/docs/reference/plugins/like/ - Where u can also read about the actual tags in the code - set them as u need.
If that div doesn't work for u. Try making a div containing FB like button on left and Tweet on right by using the css float value.
Put both buttons in one div that should be block.
I guess it could look like this:
<div class="share">
<div class="fb">/fb like code/</div>
<div class="twitter">/twitter button code/</div>
</div>
CSS:
.share {
display: block;
}
.fb{
width: 101px;
float: left;
}
.twitter{
width: yourwidthpx;
float: right;
}
Anyway I think your problem is just that u use an iframe, which is not needed. Best would be if u paste your code so others can provide better help.