Nevermind, I figured it out myself.
Here's what I did.
I added the following to my custom.css file:
CODE
input#ctl00_ctl02_search {
background:transparent;
font-family:Arial, Tahoma;
font-size:18px;
font-weight:bold;
color:#FF0000;
border:0px;
width:215px;
margin-top:5px
}
Then I added the following code where I wanted my search box:
CODE
<table cellspacing="0" cellpadding="3" border="0">
<tbody valign="middle">
<tr>
<td width="300" style="background-position: right; background-image: url(//02b8b9e.netsolstores.com/Images/buttons/search_bg.jpg); background-repeat: no-repeat;">
<div align="right" class="header-search">
<div id="ctl00_ctl02_searchBox" class="custom-search" onkeypress="java script:return WebForm_FireDefaultButton(event, 'ctl00_ctl02_go')">
<table cellpadding="0" cellspacing="0">
<tr>
<td class="custom-search-text"><span></span></td>
<td class="custom-search-field"><input name="ctl00$ctl02$search" type="text" maxlength="100" id="ctl00_ctl02_search" class="textbox" /></td>
<td class="custom-search-button"><input type="image" name="ctl00$ctl02$go" id="ctl00_ctl02_go" src="images/spacer.gif" width="70" height="28" alt="Search!" style="border-width:0px;" /></td>
</tr>
</table>
</div>
</div>
</td>
</tr>
</tbody>
</table>
The secret is that I added this code to the very bottom of my Header editor:
CODE
<div style="display:none"><ns:Search type="custom" text=""></div>
If you use this, make sure to change the background image to your own.
Hope this helps some people. (IMG:
http://forums.networksolutions.com/style_emoticons/default/laugh.gif)