Hyperlink blue text not displaying

Hyperlink blue text not displaying

by Ali Hastie -
Number of replies: 2

Hi

We have have customized our Moodle Themes and the way we have our themes all of our hyperlinks do not display original blue text.

Is there a way within the Wiki module we can configure the hyperlinked text to display the usual blue colour?

Thanks,

Ali

Average of ratings: -
In reply to Ali Hastie

Re: Hyperlink blue text not displaying

by Tim Hunt -
Picture of Core developers Picture of Documentation writers Picture of Particularly helpful Moodlers Picture of Peer reviewers Picture of Plugin developers
Add more rules to your theme like

body.mod-wiki a:link {

}

to set the colour black to blue. (Check the HTML to see what the right class name on body is, I am guessing.)
In reply to Tim Hunt

Re: Hyperlink blue text not displaying

by Ali Hastie -

Thanks for the prompt reply Tim

After several attempts with different variations, this is the code that seems to work:

#mod-wiki-view .generalbox a {

color: #0000AA;

}

within Modules: Wiki  in styles_color.css within our theme folder.

Many thanks

Ali