I'm new to Twitter Bootstrap, and I'm starting to wave my way through using it. Although some aspects of the structure are starting to make sense, I am still struggling with the style of form. I am trying to customize several different sections of the form that will have elements that are used in the style .form-inline. In one such case, I am also trying to use .input-appendwith little luck.
<div class="row">
<div class="well span12">
<div class="row">
<div class="span12 form-inline input-append">
<label for="assetSearch">Asset Search</label>
<input type="search" id="assetSearch" placeholder="">
<span class="add-on"><i class="icon-search"></i></span>
</div>
</div>
<div class="row">
<div class="span12 form-inline">
<label for="service">Service</label>
<input type="text" id="service" autocomplete="off" />
</div>
</div>
</div>
</div>
The above markup is as follows:

As you can see, Asset Search is not built-in with the input of the form. If I remove the class .input-appendfrom the div line containing the div. However, the search icon is no longer inserted into the text box, but instead to the right of the text box.
.form-inline cunjunction .input-append?