Universal CSS Navigation Menu Support Product Page
Answered
How do I set up the Search button in Universal CSS Navigation?
Asked 29 May 2014 20:27:04
1
has this question
29 May 2014 20:27:04 David Slentz posted:
I am using Sphider as my search engine. (Your previous post about using PicoSearch is no longer valid since PicoSearch went out of business.). How should I format the HTML for using Sphider?The Universal CSS Menu has this set up when I checked the box and added the URL for the search.php:
<form class="dmxSearchForm" action="dm-webcreation.com/evm/sphider/search.php" method="get">
<input class="textfield" name="search" type="text" />
<input class="button" type="submit" value="Search" />
</form>
But this does not pass off the search value to the search. What am I doing wrong.
Below is the HTML code that works when I use Sphider independently on my website:
<form action="sphider/search.php" method="get">
<input type="text" name="query" id="query" size="40" value="" action="include/js_suggest/suggest.php" columns="2" autocomplete="off" delay="1500">
<input type="submit" value="Search">
<input type="hidden" name="search" value="1">
</form>
How do I correct the HTML code for the Universal CSS Menu? I tried just replacing it but, it does not show as part of the CSS Menu bar.
Thanks,
David
Replies
Replied 30 May 2014 12:21:52
30 May 2014 12:21:52 Teodor Kuduschiev replied:
Hi David,
This should work fine for you:
This should work fine for you:
<form class="dmxSearchForm" action="sphider/search.php" method="get"> <input class="textfield" type="text" name="query" id="query" size="40" value="" action="include/js_suggest/suggest.php" columns="2" autocomplete="off" delay="1500"/> <input class="button" type="submit" value="Search" /> <input type="hidden" name="search" value="1"> </form>
Replied 30 May 2014 14:45:24
30 May 2014 14:45:24 David Slentz replied:
Thanks!
That works.
That works.