I am building a website using bootstrap, less and angular, and I have been struggling to use the input field for the search bar. I tried using the bootstrap input group using the input-group-addon button and the input-group button, but it seems like I cannot remove the border between the button and the input. Actually, I cannot change the border at all. Any suggestions on how I can do this. I would like my search field to have the same behavior as duckduckgo .
UPDATE:
<form role="form" action="results.html" style="padding:30px"> <p class="input-group"> <input type="text" class="form-control" name="q" /> <span class="input-group-addon" style="border-left-width: 0px"><span class="glyphicon glyphicon-search" aria-hidden="true"></span></span> <input type="hidden" name="mode" value="web" /> </p>
So this is my code. I do not know how to make JSFiddle with it so that the bootstrap style is preserved. I also tried putting the html and css from this http://jsfiddle.net/CbGpP/2/ link into my code, and the line between the button and the input is still saved, nor does it turn green on click.
source share