Can someone assist me with the CSS code to display an outer border when tabbing through a Matrix table question in Qualtrics with a dynamic theme? I'm having difficulty achieving this.
Can someone assist me with the CSS code to display an outer border when tabbing through a Matrix table question in Qualtrics with a dynamic theme? I'm having difficulty achieving this.
To display an outer border when tabbing through a Matrix table question in Qualtrics with a dynamic theme, you can use CSS to target the table and add a border style. Here's an example code snippet that you can use:
/* Add an outer border to the Matrix table when tabbing through */
.Qualtrics .QuestionBody .MatrixTable {
outline: none; /* Remove default outline */
border: 1px solid #000; /* Add outer border */
padding: 10px; /* Optional: add padding to give some space around the table */
}
Make sure to replace #000
with the desired color code for the border. You can customize other CSS properties like border width, style, color, and padding as per your requirements.
To apply this code to your Qualtrics survey, follow these steps:
Thanks
Thanks
Can you share code snippet you have been using through
Enter your E-mail address. We'll send you an e-mail with instructions to reset your password.