wolfman97
Newbie
Posts: 1
Registered: 12/30/2006
Location: California
Member Is Offline
|
| posted on 12/30/2006 at 01:53 AM |
|
|
Embedding Google Search in a menu item
I couldn't find any post that discussed this. I want to embed a Google Search button in menu item. I would like the Google search text box and
button to be visible, and operational from within the menu.
I have tried several different methods. I can get it to display properly, but it isn't operational.
Anyone got any ideas? Thanks.
Here is the code for the Google search:
| Code: | <form method="get" action="http://www.google.com/custom" target="google_window">
<table border="0" bgcolor="#ffffff">
<tr><td nowrap="nowrap" valign="top" align="left" height="32">
</td>
<td nowrap="nowrap">
<input type="hidden" name="domains" value="
[... skipped ...]
</td></tr></table>
</form>
|
|
|
|
tigra
Administrator
Posts: 1982
Registered: 6/17/2002
Location: US, CO
Member Is Offline
|
| posted on 12/30/2006 at 10:29 PM |
|
|
This can't be done without the menu customized specifically for that.
The problem with the free version is that it uses <a href="..."> tag for the menu items and it will not accommodate the form and table inside
it. PRO and GOLD versions use the separate layer for detecting the mouse events so you can have a form inside the menu item, but it will not respond
because the whole area of the menu item reacts as a link (it will redirect the browser to associated URL when clicked).
|
|
|