Guy,
Thanks for the PM with details on the site. There is definitely a bug with how the Login button is being rendered. This should only happen when you have 'switched' to using Facebook as a Page instead of as a personal profile account. When I switched to a personal account, the button showed fine with no gigantic white box.
Fortunately, there are a few ways you can fix this:
* In the SCLogin module, change to using a 'Custom Image' instead of the Javascript button you are using. Then, supply whatever image you want to use as the Facebook button, which is more flexible and generally nicer looking.
* Add some code to your CSS file, which will fix the width and height that the Javascript button can be:
#fb_login_button {
width: 80px;
}
#fb_login_button span,
#fb_login_button iframe {.
width: 80px! important;
height: 25px! important;
}That was taken from
this Stack Overflow post
.
Hope that helps, but if you still have issues, let me know.
Thanks,
Alex