When the respondent forgets to answer a question, he will be notified by a message ‘you forgot to answer a question’. When you have the need to personalize this, you can do this using some custom CSS
/* removes the current message */
#messageBar span {
color: transparent !important;
position: relative;
}
/* inject a new message to show to the respondent */
#messageBar:after {
content: 'Oops, you forgot to answer a question';
color: #76640f;
font-weight: bold;
font-size: 120%;
}
If your survey has more than one language, place this front of the styles: ‘:lang(en)>’. Repeat for each language replacing ‘en’ by the correct language code. For example:
/* removes the current message that is displayed for the English language */
:lang(en)> #messageBar span {
color: transparent !important;
position: relative;
}
Comments
0 comments
Please sign in to leave a comment.