Hyperlink Color change

Hyperlink Color change

av Andrew Walding -
Antall svar: 2

When I first began using moodle, I stumbled on a way to change the hyperlink color for a course outside of the CSS.  But now, I am running 2.7 and cannot seem to find the way to revert that setting.  I have tried forcing the theme and the hyperlinks are still the modified color.  I have a funny recollection that I edited a file somewhere.  Can anyone help?

Gjennomsnittlig vurdering: -
Som svar til Andrew Walding

Re: Hyperlink Color change

av Rick Jerz -
Bilde av Particularly helpful Moodlers Bilde av Testers

In some themes, like more, you can edit some of the hyperlink characteristics.  However, I prefer adding CSS to the themes custom CSS textbox.  I do this myself, as follows:

/* To make hyperlinks a different color than black */

a:link { color: #990000;}  /* unvisited link */

a:visited { color: #cc6666;}  /* visited link */

a:hover {color:#990000;}  /* mouse over link */

a:active {color:#009899;}  /* selected link, complement of maroon */