Hello,
Is there a way to add or view a 'T' in the matrix tables--i.e., vertical line to right of statements, horizontal line beneath scale points? (The same lines that are visible for matrix tables during edit-mode.)
Any thoughts? If possible, I would prefer the line colors to be: #104F8F
Thanks!
Page 1 / 1
Hello @ehoffman ,
Paste the below code in the js(OnReady) of the matrix question
var jfe = false;
if(/^\\/jfe/.test(window.location.pathname)) jfe = true;
var q = jQuery("#"+this.questionId);
if(!jfe || (jfe && q.find('div.desktop').length > 0)) {
q.find("table").css("border-collapse","collapse");
q.find(" .Answers").css("border-bottom","2px solid #104F8F");
q.find(" .c1").css("border-right","2px solid #104F8F");
}
Paste the below code in the js(OnReady) of the matrix question
var jfe = false;
if(/^\\/jfe/.test(window.location.pathname)) jfe = true;
var q = jQuery("#"+this.questionId);
if(!jfe || (jfe && q.find('div.desktop').length > 0)) {
q.find("table").css("border-collapse","collapse");
q.find(" .Answers").css("border-bottom","2px solid #104F8F");
q.find(" .c1").css("border-right","2px solid #104F8F");
}
Leave a Reply
Enter your E-mail address. We'll send you an e-mail with instructions to reset your password.