You can see it here[here][1].
best regards!
EDIT (here is the corrected code):
function doResize() { //alert('before: being ' + $('#beingContent').height()); //alert('before: questions ' + $('#questionsContent').height()); maxHeight = 0; var divs = jQuery("#questionsContent, #beingContent"); $.each(divs, function(){ var height = jQuery(this).height(); if(maxHeight<height) maxHeight = height; }); divs.height(maxHeight); $('#beingContent').css('height', maxHeight - 2); //alert('after: being ' + $('#beingContent').height()); //alert('after: questions ' + $('#questionsContent').height()); $("#root").css('visibility', 'visible'); } and the CSS:
#beingContent { padding:0 5px !important; border:1px solid black !important ;} That solved the alignment issue! Thanks. [1]: http://www.guygar.com/inception/nothingness/index.html