Here is the list I am working with:
<li>Equipment Area:{{equipment_area}}</li>
<li>Equipment Type: {{equipment_type}}</li>
<li>Manufacturer: {{manufacturer}}</li>
<li>Model Number: {{model_number}}</li>
<li>Serial Number: {{serial_number}}</li>
<li>Service: {{service}}</li>
<li>Capacity: {{capacity}}</li>
<li>Comments: {{general_comments}}</li>
<li>Total Cost: {{total_of_new_installation}}</li>
When attempting to change the font color of the titles to blue, I added inline styling:
<li style="blue">Equipment Area:{{equipment_area}}</li>
Unfortunately, using this inline style affects both the title and value in the list item.
I am looking for a way to only make the title blue while keeping the template value white. Is there any solution for this?