|
Post by Ron on Dec 2, 2004 23:09:30 GMT
This script was created by Peter. It will modify your SayBox's message area to have the number of rows you specify. <script type="text/javascript"> <!--
function reSize(trows){ if(document.getElementById("saybox_mesg")){ document.getElementById("saybox_mesg").rows = trows; } }
window.onload = function(){ reSize("3"); }
//--> </script> Change the "3" to number of rows you want.
|
|