How do I change the font color of the Constant Sum total box? (it defaults to red)
Page 1 / 1
Hello @ajhdodma ,
add this code, hope it helps,
Qualtrics.SurveyEngine.addOnReady(function()
{
/*Place your JavaScript here to run when the page is fully displayed*/
jQuery("#QID54_Total").css("color","#000000");
});
You can get that question id from inspect element. i.e "#QID54_Total" part in the code.
add this code, hope it helps,
Qualtrics.SurveyEngine.addOnReady(function()
{
/*Place your JavaScript here to run when the page is fully displayed*/
jQuery("#QID54_Total").css("color","#000000");
});
You can get that question id from inspect element. i.e "#QID54_Total" part in the code.
I tried the above JS and it did not work. Is there something missing?
That worked for me. Be sure you have the correct QID# (in preview - right click - inspect element).
Hello @ajhdodma,
I am new to css and Qualtrics so your help is greatly appreciated. Could you please show how to do the same for the constantsum total box - increase the font size and make it bold?
I have the other columns bold and in 12 font size but Qualtrics does not allow or give any options of changing the font size or making the text bold for the constantsum total box.
Many thanks!
I am new to css and Qualtrics so your help is greatly appreciated. Could you please show how to do the same for the constantsum total box - increase the font size and make it bold?
I have the other columns bold and in 12 font size but Qualtrics does not allow or give any options of changing the font size or making the text bold for the constantsum total box.
Many thanks!
Leave a Reply
Enter your E-mail address. We'll send you an e-mail with instructions to reset your password.