I'm having trouble getting the textbox and icon to be in the same line, like a bootstrap input group. The icon is also clickable.
<div class="input-group">
<asp:textbox id="txtParentCategoryCode" runat="server" cssclass="input-text normal" maxlength="20"></asp:textbox>
<span class="middle-span">
<asp:linkbutton id="btn_Category" runat="server"><i class="fa fa-folder-open" aria-hidden="true"></i></asp:linkbutton>
<asp:linkbutton id="imgClearCal" runat="server" tooltip="Clear Category" style="vertical-align: middle; cursor: pointer;"><i class="fa fa-times" aria-hidden="true"></i></asp:linkbutton>
</span>
</div>
Any assistance would be greatly appreciated!