questionnaire- specific css?

questionnaire- specific css?

by Martin Koops -
Number of replies: 2

In the questionnaire if find according to css-inspector:

DY, id: mod-questionnaire-view, class: mod-questionnaire course-5TABLETBODYTRTDDIV, id: pageDIV, id: contentFORMTABLE, class: mainTableTBODYTRTDTABLE, class: qnOuterTableTBODYTRTDTABLE, class: qnInnerTableTBODYTRTD, class: qnInner

So, it seems to me that something like:  

#mod-questionnaire-view .mainTable{ color:#FFFFFF;}
or
#mod-questionnaire-view .mod-questionnaire .qnInner{ color:#FFFFFF;}

SHOULD WORK.

I tried very many coimbinations of id's and classes, but not one makes the text in the questionnaire chnage color.

suggestions?

should wordk.

Average of ratings: -
In reply to Martin Koops

Re: questionnaire- specific css?

by Jean-Marc Loisil -
You should try ro target the form elements like :

input, select, textarea{
color:#fff;
}

or adding a class

.mod-questionnaire input{
color:#fff;
}

or even selecting a form element with a specific attribute (works in Mozilla) :

input[type="submit"]{
color:#fff;
}
In reply to Jean-Marc Loisil

Re: questionnaire- specific css?

by Martin Koops -

thank you for the help.

I'll try it asap.

I meant the whole text area though; all text on teh questionnaire page is beyond my reach of format ...