not working
| Twiebie |
|
|---|---|
#35552 musashi9: Don't know about the login form in the header, it works fine for me. Regarding the searchbox, change the following on line 125 in header.tpl:
<input type="text" name="rsq" value="{PHP.L.Search}..." onblur="if(this.value=='') this.value='{PHP.L.Search}...';" onfocus="if(this.value=='{PHP.L.Search}...') this.value='';" class="sq" maxlength="40"/>
To:
<input type="text" name="sq" value="{PHP.L.Search}..." onblur="if(this.value=='') this.value='{PHP.L.Search}...';" onfocus="if(this.value=='{PHP.L.Search}...') this.value='';" class="sq" maxlength="40"/>
|