You can add a module class suffix to the moduleI think this would effect the containing <div> for the module, not the actual size of the input field...
To do it with CSS you would need to use something like:
| Code: |
div.moduletablevidsearch input
{
width: 220px;
}
|
I have not tested that, so it might be easier to edit:
JoomlaRoot/modules/mod_hwd_vs_search/mod_hwd_vs_search.php
Replace:
| Code: |
echo '<input type="text" name="pattern" value="'.$input_text.'" class="inputbox" onchange="document.adminForm.submit();" onblur="if(this.value=='') this.value=''.$input_text.'';" onfocus="if(this.value==''.$input_text.'') this.value='';" />';
|
With:
| Code: |
echo '<input size="100" type="text" name="pattern" value="'.$input_text.'" class="inputbox" onchange="document.adminForm.submit();" onblur="if(this.value=='') this.value=''.$input_text.'';" onfocus="if(this.value==''.$input_text.'') this.value='';" />';
|