I have this search box :
And the code of the search box is :
<form method = "post" action="search.php" class = "pull-down navbar-search">
<div class="input-append">
<input class="search-query input-medium" name="search_query" type="text" placeholder="Arama Yap" >
<button type = "submit "class="btn btn-large" type="button"><i class="icon-search"></i></button>
</div>
</form>
I want the search box to have no space between the box and the button. How can I accomplish it? Thanks.
<form method = "post" action="search.php" class = "form-search"> <div class="input-append"> <input class="search-query span2" name="search_query" type="text" placeholder="Arama Yap" > <button type = "submit "class="btn" type="button"><i class="icon-search"></i></button> </div> </form>
– Rapid