How can I change the add-item (green plus sign) and remove-item (red minus sign) icons in dynamic form by wbraganca.com - Wanderson Bragança?
How can I change the add-item (green plus sign) and remove-item (red minus sign) icons in dynamic form by wbraganca.com - Wanderson Bragança?
there are a "span" tag inside those buttons. For example, here are the code for the green plus sign:
<button type="button" class="add-room btn btn-success btn-xs">
<span class="glyphicon glyphicon-plus"></span>
</button>
So you can remove that span or just change the class to put another icon or whatever you want.