How do I set the width of a widget_textBox textbox. The default seems to be 200 which isn't big enough for the text box I want to use.
Hi,
The code itself is generated by line 7 in includes/widget.php which doesn't specify a width; so you could always add a fixed width at that point; for example for 300px simply change that line to:
print "<input type='text' name='".$name."' value='".$default."' style='width:300px;' />";
Cheers, David.
©2006-2025 IAAI Software | Contact Us | Privacy Policy
Hi,
The code itself is generated by line 7 in includes/widget.php which doesn't specify a width; so you could always add a fixed width at that point; for example for 300px simply change that line to:
print "<input type='text' name='".$name."' value='".$default."' style='width:300px;' />";
Cheers,
David.