Hello,
I have searched the forums for 'feedbacktext', and specifically information on how to change the colour of the feedback text in quizzes. I found this posting:
http://moodle.org/mod/forum/discuss.php?d=29649
but the suggested change to a style sheet did not work. Any suggestions will be most welcome.
Here's what I have done so far:
I have added this code
.feedbacktext {
color: #ff6600;
}
to the 'styles_color.css' and to the 'styles_fonts.css' (both in the
'standard' theme directory). I also found a reference to
'.feedbacktext' in the 'styles_layout.css' (also in the 'standard' theme
directory):
/***
*** Modules: Quiz
***/
.feedbacktext {
display:block;
text-align:right;
}
which I changed to:
/***
*** Modules: Quiz
***/
.feedbacktext {
display:block;
text-align:right;
color:#ff6600;
}
However, the colour of the feedback has not yet been effected - it remains black.
Any suggestions you have will be most welcome.
and the standardblue theme, which refers to the 'standard' theme for all style sheets except 'gradients.css'.
