0 How do you colorize a lava badge 4 Dan Abbuhl posted 6 Years Ago I created a new Badge for a class that new people take at our church before they are members. I was able to look at the Baptism badge and basically copy that and create a trigger that works in the member area just like the baptism. So when someone finishes the classes and you place the date in the field, the badge turns on like the baptism badge goes from gray to colored. I want to colorize the new badge like the baptism badge goes from gray to blue. I want to colorize the new badge to go from gray to Teal. I don't see in the Baptism badge how the badge is changed from fa-tint (which is the font awesome vector graphic of a water drop) to blue instead of plain black. Here is the code that is used: {% assign baptismDate = Person | Attribute:'BaptismDate' %} {% if baptismDate != '' -%} <div class="badge badge-baptism" data-toggle="tooltip" data-original-title="{{ Person.NickName }} was baptized on {{ baptismDate }}."> <i class="badge-icon fa fa-tint"></i> </div> {% else -%} <div class="badge badge-baptism" data-toggle="tooltip" data-original-title="No baptism date entered for {{ Person.NickName }}."> <i class="badge-icon badge-disabled fa fa-tint"></i> </div> {% endif -%} which creates this: I don't see how the fa-tint is colored. How Do I replicate this? Here is the code I'm using and the results: {% assign 3GDate = Person | Attribute:'3GClass' %} {% if 3GDate != '' -%} <div class="badge badge-3G" data-toggle="tooltip" data-original-title="{{ Person.NickName }} completed 3G classes on {{ 3GDate }}."> <i class="badge-icon fa fa-google"></i> </div> {% else -%} <div class="badge badge-3G" data-toggle="tooltip" data-original-title="3G classes not completed for {{ Person.NickName }}."> <i class="badge-icon badge-disabled fa fa-google"></i> </div> {% endif -%} I want to make the fa-google a teal color. How can this be done?edited administratively for formatting so we could answer. Please let us know if this editing has unintentionally changed the nature of your question =)