I am using jQuery Fancybox for a popup registration form here
I would like the form to come up at the size of 450px by 700px but no matter what I set the height and
after testing every of the above tips (and still having useless scrollbars caused by some inline overflow: scroll
at .fancybox-inner
) and also trying a lot of other own workarounds, i got rid of the scrollbars with this solution:
afterShow: function(){
this.inner.css({
overflow: 'auto' // or 'no'
});
}