It’s a bit hard to explain, but if you go here: http://ewsprojects.com/~lyons, click on Login | Register, clear the registration form, and try to submit, you’ll get a validation error (Field required)
You’ll see that the form does not update the height to compensate for the increase. I’ve tried everything, padding, margin, different height values, etc.
I know this question lacks a lot of info, but I’m not sure what else I can put. If you need anything to help you answer, let me know and I’ll get right on it.
Just remove the height from the style of the div with id ‘osx-container’ and it would automatically take the height of the content.
Update:
adding
$('#osx-container').css({'height':'auto'});in the Open function in the osx.js file solved the problem. Added it there as the height was calculated every time the dialog box was opened and hence had to be reset to auto every time.