CSS Help - Modify Color of Save/Submit Button (and Checkmark)
Best Answers
-
Brian_Wiest Customer Super IT Monkey ✭✭✭✭✭Here is a snip from my CSS.fa-check {color: #00FF00 !important;}.fa-times {color: #FF0000 !important;}.fa-pencil {color: #FFFF00 !important;}
Check is save, Times is Cancel and pencil is edit.5 -
Brian_Wiest Customer Super IT Monkey ✭✭✭✭✭I do not think so as the span class ends before the text as shown below. The buttons share a class but you would make all the button text the same
<button class="btn btn-link btn-lg">
<span class="fa fa-check"></span>
<div>Save</div>
</button>
.......
<button class="btn btn-link btn-lg">
<span class="fa fa-pencil"></span>
<div>Apply</div>
</button>
5
Answers
Check is save, Times is Cancel and pencil is edit.
<button class="btn btn-link btn-lg">
<span class="fa fa-check"></span>
<div>Save</div>
</button>
.......
<button class="btn btn-link btn-lg">
<span class="fa fa-pencil"></span>
<div>Apply</div>
</button>