Hi I need to place my search box at the top right. Can someone please help me with this... my website is http://petmedssource.com will pay $3 for a quick job.
Try adding this code to the top CSS id tag: ... #top { } #top form { position:absolute; right:0; top:0; } #top img { } ... and then adding the form to the beginning of your HTML code: <body> <div id="top"> <form action="search/search.php" method="get"> <input class="txtBox"type="text" name="query" id="query" size="14" 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> <a href="http://petmedssource.com/index.html"><img src="http://petmedssource.com/images/logo.gif" alt="pet meds" height="66" border="0" /></a> ... This should place the form to upper right of the page within the content area.