UPDATES:
Upon incorporating the recommended
<span class="input-group-addon">.00</span>
, this is the current rendering:
https://i.sstatic.net/WQohm.png
Even after trying to use style="margin-left:200px;"
, there was no visible change.
UPDATE COMPLETION
Is there a way to insert fa fa search
on the right side of a textbox? Below is the HTML code post-rendering:
https://i.sstatic.net/BbzGB.png
<div class="form-group">
<label class="col-sm-2 control-label">Search </label>
<div class="input-group" style="margin-left:210px">
<span class="input-group-addon"><i class="fa fa-search"></i></span>
<span role="status" aria-live="polite" class="ui-helper-hidden-accessible"></span>
<input class="form-control ui-autocomplete-input" data-jqui-acomp-delay="200" data-jqui-acomp-hiddenvalue="PartId" data-jqui-acomp-minlength="2" data-jqui-acomp-source="/Search" data-jqui-type="autocomplete" id="Part" name="Part" placeholder="Search..." required="required" style="width:215px !important;" type="text" value="" data-parsley-id="6454" autocomplete="off">
<ul class="parsley-errors-list" id="parsley-id-6454"></ul>
<input id="PartId" name="PartId" type="hidden" value="" data-parsley-id="9361">
<ul class="parsley-errors-list" id="parsley-id-9361"></ul>
</div>
</div>
Placing the span
directly beside the textbox results in the following:
<span class="input-group-addon"><i class="fa fa-search"></i></span>