beano33: Sure, the mod is quite flexible. As in the example of the sig mod, just add the "height" attribute and remove "overflow-x" and "overflow-y" such as:
Replace:
Code:
.hidemsg {
width:700px;
padding-bottom:20px;
overflow:auto;
overflow-x:auto;
overflow-y:hidden;
}
With:
Code:
.hidemsg {
width:700px;
height:700px;
padding-bottom:20px;
overflow:auto;
}
Just change the width and height values of "700px" to whatever you want.
*The only reason I did not set a height limit is because there will be some posts that will be extensively long which are valid such as articles, tutorials and reviews. See, both image and text will be affected in the post that is being enforced.
Xplorer4x4: Thanks for the support.