View Full Version : How Do I Change The Text Field Size On New Reply
DieselMinded
05-13-2007, 12:26 AM
I did it B4 but forget and I upgraded to 3.6.6 and it went back , I beleave its on .newreply.php but where ?
TIA
DM
bitdefuser
05-13-2007, 12:58 AM
It's in the forum root directory of your Vbulletin directory.
Find out how many pixels is your current one and then search it in the PHP file.
But, I think you can change it in the Settings of the template though.
DieselMinded
05-13-2007, 01:22 AM
I found it In functions_editor.php
// set the height of the editor based on the editor_height cookie if it exists
$editor_height = $vbulletin->input->clean_gpc('c', 'editor_height', TYPE_UINT);
$editor_height = ($editor_height > 100) ? $editor_height : 250;
Changed to
// set the height of the editor based on the editor_height cookie if it exists
$editor_height = $vbulletin->input->clean_gpc('c', 'editor_height', TYPE_UINT);
$editor_height = ($editor_height > 175) ? $editor_height : 325;
vBulletin® v3.8.12 by vBS, Copyright ©2000-2025, vBulletin Solutions Inc.