Hello, I've received this code to put an amazon.com search feature on my navbar, but the problem is that I want to give it its own individual drop down search box on the navbar, and not be an extension of the current search box.
So how do I do this?
Code:
<!-- Amazon.com Search Start --> <tr> <td class="thead">Search Amazon.com!</td> </tr> <tr> <td class="vbmenu_option" title="nohilite"> <form action="http://www.amazon.com/exec/obidos/external-search"> <input type="text" class="bginput" name="keyword" size="20" />$gobutton<br /> <input type="hidden" name="mode" value="blended" /> <input type="hidden" name="tag" value="YOUR ASSOCIATE ID" /> </form> </td> </tr> <tr> <td style="background-color:#000;" height="40" align="center"><a href="http://www.amazon.com/exec/obidos/redirect-home/YOUR ASSOCIATE ID"><img src="http://g-images.amazon.com/images/G/01/associates/build-links/ap-search-logo-126x32.gif" height="36" border="0" width="126" /></a></td> </tr> <!-- Amazon.com Search End -->
Comment