Hi, im trying to place a form into a thin, 15px, div bar. The problem is, when i put the form code into the <div></div>, it seems like i put a couple of <br>'s in front....
Heres the html:
css:
Whats wrong? i even tried replacing the button with an image (<input type="image" src="imgbutton.gif" alt="Go!" name="submit">) which is less that 15px...AND made the input box (the thing where you type stuff in) smaller in height... I can't make the whole thing on one line
Heres the html:
Code:
<div class="bar"> just some plain old text here... <span title="Search the site"> <form method="post" action="http.wau4k.com/quyo"> <input type="hidden" name="crid" value="52318042a4a6" /> Search: <input name="query" size="8" class="search" /> <input type="button" value="go" alt="Go!" name="submit" /> </form> </span> </div>
Code:
.bar { display: block; border: 1px solid #B3B3B3; border-bottom: 3px; border-right: 3px; width: 100%; height: 15px; font-family: Tahoma, Verdana, Arial, sans-serif; text-align: center; background-color: #EDEDED; white-space: nowrap; }

Comment