Quote:
Originally Posted by SkyCatcher
You can define a set height and width here (in the JS file)
Code:
//if(params['height']) {ibox.style.height = params['height']+'px';}
//else {ibox.style.height = '380px';}
ibox.style.height = '380px';
//if(params['width']) {ibox.style.width = params['width']+'px';}
//else {ibox.style.width = '800px';}
Just change to
Code:
//if(params['height']) {ibox.style.height = params['height']+'px';}
//else {ibox.style.height = '380px';}
ibox.style.height = '480px';
//if(params['width']) {ibox.style.width = params['width']+'px';}
//else {ibox.style.width = '800px';}
Adding a set height to 480 in the example above. A scrollbar will show for the up/down scrolling if the post is taller than that.
Oh sorry, and also set:
height:45%;
in the CSS file for ibox_content
|
Thanks, overall that helps with the usability in my situation.