Quote:
Originally Posted by RMS-Chef
Thanks, I edited my previous post as you wrote that.
Many of my threads are quite long and with auto-resize the user has to scroll the entire main window as it extends far down. If I set a defined size, the window is the proper size but there are no internal scroll bars to scroll down within that window. Am I missing something or is that a limitation?
|
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