I added the search field to the top of my pages with this code
but I already had a form object on the bottom of my page (a jump menu)
after adding the search field to the top of the page the form at the bottom stopped working. Just so you know I have no Idea about code as I created all my pages with dreamweaver so please talk to me as a complete novice
Please explain how to add the search field without breaking the form object on the bottom. Thanks in advance.
Code:
<form method="get" action="search/search.php"> <input type="text" name="zoom_query" size="20" /> <input type="submit" value="Search" /> </form>
Code:
<form name="form" id="form"> <select name="jumpMenu" id="jumpMenu" onChange="MM_jumpMenu('parent',this,0)"> <option value="#" selected="selected">Episode List</option> <option value="episode001.php">Episode 01</option> <option value="episode002.php">Episode 02</option> <option value="episode003.php">Episode 03</option> <option value="episode004.php">Episode 04</option> </select> </form>
Please explain how to add the search field without breaking the form object on the bottom. Thanks in advance.
Comment