Quote:
Originally Posted by kregger
I triple checked that. Every search opens a Google window though. In the code it says,
Code:
<form method="get" action="http://www.google.com/custom" target="google_window">
That sounds like its supposed to always do that instead of being like a regular forum search. Of course, I don't know very much about code. hehe I'm just a beginner.
|
Ok here is what you do:
Find the following code:
Code:
<input type="radio" name="sitesearch" value="" checked="checked"></input>
<font size="-1" color="#000000">Web</font>
Remove the following code:
Now find this code:
Code:
<input type="radio" name="sitesearch" value="your-site.com"></input>
<font size="-1" color="#000000">your-site.com</font>
Now put the following code in this line:
It should now look like this
Code:
<input type="radio" name="sitesearch" value="your-site.com" checked="checked"
></input>
<font size="-1" color="#000000">your-site.com</font>
This should make it so that it defaults to do the search of your web site.