I have the following bit of HTML:
<ul class="unstyled" style="font-size:16px;">
{% if stuff %} {% for eachthing in stuff %}
<li>
<a href = "path"> Stuff goes here </a>
</li>
{% endfor %} {% else %}
</ul>
Basically I would like to change the text color of the link within the template rather than in the CSS.
How would I do this? I have tried adding a 'color' property to both the element as well as the element but to no avail.