
It seems that no-one realises that the red text in my blog (collegiate template) represents hyperlinks, partly because of the colour but mainly because it does not display underlined until hovered over. Easy-peasy I thought, I'll edit the template. I had identified this block of code
a:link { color: #993333; text-decoration: none; }
a:visited { color: #993333; text-decoration: none; }
a:hover { color: #993333; text-decoration: underline }
as the likely culprit since it seems to describe the appearance of my hyperlinks. I tried changing the first line to
a:link { color: #993333; text-decoration: underline; }
both with and without the semi-colon at the end but no joy. Any suggestions?