This is probably simple but I dont know how to do it. Currently with this code the “find” button sits on the line below the input “location” box. How do I get it to sit on the same line to the right like most search boxes work?
HTML
<div class="fieldwrapper">
<input id="field_location" class="field r2" placeholder="Town, City or Postcode" id="Postcode" name="Postcode" type="text" value=""><input type="submit" id="findbutton" value="Find" />
</div>
CSS
field { font-family:arial, sans-serif; border-color: #d9d9d9; border-top:solid 1px #c0c0c0; }
input.field{width:100%}
If you want your text box to be
100% widthand a button besides it you can do it like this : My Fiddle