I have set up a facebook page tab. I use this code to resize the height:
<div id="fb-root"></div>
<script type="text/javascript">
window.fbAsyncInit = function() {
FB.init({
appId: 'appid',
status: true,
cookie: false,
xfbml: true
});
FB.Canvas.setSize({ width: 810, height: 610 });
};
(function() {
var e = document.createElement('script');
e.async = true;
e.src = document.location.protocol + '//connect.facebook.net/de_DE/all.js';
document.getElementById('fb-root').appendChild(e);
}());
</script>
The problem is that it always scrolls horizontal. The background image is 810px wide. If i make it maximum 802px the scrolling disappears.
Though on the left side of the facebook window is enough space to show the whole 810px.
Any ideas?