inherit
134992
0
May 26, 2012 2:38:57 GMT -8
SubDevo
Creator of LSD...
3,861
December 2008
subdevo
|
Post by SubDevo on Mar 3, 2010 21:08:48 GMT -8
Enlarge Text Areas on "Modify Profile" Page by SubDevoTested in IE, FF, Opera, Safari and Chrome. PREVIEW (animated gif) This code enlarges the PB default text area sizes of the Signature, User Notes and Account Notes (If you are the admin or have the power to modify other members profiles). Now you can see more of your text at one time! No need to edit. The code uses the width of the cell that the text area is contained in. It will not change the look of your page. The code sets the height to be approximately the size that will fit 400 characters (max for signature), without adding scroll bars. If you wish to change this height, find the line below in the code and change the Maroon number to your required size. This is not "pixels", it is the number of lines (rows). b[x].rows="15";Enjoy!!! SubDevo Location: Main Footer<script type="text/javascript"> <!-- /* Enlarge Text Areas on "Modify Profile" Page by SubDevo */ /* Main Footer - Please leave this header intact. Do not repost. */ /* interoceandesigns.proboards.com or lsdp.proboards.com */ var a=document.modifyForm; if(a){ var b=[a.signature,a.usernotes,a.notes]; for(var x=0;x<b.length;x++){if(b[x]){b[x].rows="15";b[x].style.width="245px";}} } // --> </script>
|
|