Your right...
Here's the offending code:
Code:
<td>
<form action='index.php' method='post'>
<div class="searchblock" id="searchblock">
Enter Keywords:
<input size="15" class="inputbox" type="text" name="searchword" style="width:128px;" value="search..." onblur="if(this.value=='') this.value='search...';" onfocus="if(this.value=='search...') this.value='';" />
<input type="hidden" name="option" value="search" />
<div align="left">
<input type="submit" value="GO" class="button" style="width:35px;" />
</div>
</div>
</form>
</td>
Honestly thats too much extra work for the template... You can do all of that with just:
Code:
<?php mosLoadModules ( 'user4' ); ?>
Assuming the sites using defaults for the original modules all you'd have to do is publish the seach module and enable the search button to get the same effect. This is just my personal opinion but to me, the rhuk series of templates seem much too complicated then needed.
What I was trying to do was show you how easy it was to change thing's with module postions and so forth. But this template wasn't designed with that in mind I guess (at least not the search area.)
If the template was setup like that the directions I had given you would've worked.