I do not write code. I am using the code from wrensoft (below) for my search form. I need a simple line of code that will place the form either to the right hand side or the middle of my web page. Again I do not write code, but I can copy and paste. Need exact info
<form method="GET" action="search.php">
<input type="text" name="zoom_query" size="20">
<input type="submit" value="Search">
Results per page:
<select name="zoom_per_page">
<option selected>10</option>
<option >20</option>
<option >100</option>
</select>
<br><br>
Match:
<input type="radio" name="zoom_and" value="0" checked>
any search words
<input type="radio" name="zoom_and" value="1">
all search words
</form>
<form method="GET" action="search.php">
<input type="text" name="zoom_query" size="20">
<input type="submit" value="Search">
Results per page:
<select name="zoom_per_page">
<option selected>10</option>
<option >20</option>
<option >100</option>
</select>
<br><br>
Match:
<input type="radio" name="zoom_and" value="0" checked>
any search words
<input type="radio" name="zoom_and" value="1">
all search words
</form>
Comment