if you want to remove the blue color from link .... replace
HTML Code:
<a href=#" title=""><span style="color:#661AFF; font-weight:bold;">Jakeman</span></a>
with
HTML Code:
<a href="#" title=""><strong>Jakeman</strong></a>
what color do you want it to be?
CSS -
Cascading Style Sheet
Some selectors will take precedence over others:
Examples:
- if you have .alt2 and .thead - the one placed last on stylesheet will take precedence
- if you use a .alt2 and td.thead - td.thead will take precedence regardless of placement in stylesheet
- etc, etc
NOTE: inline style will take precedence over external style
I provided an image so you can see the links in different colors.