HTML table formatting not working | XM Community

HTML table formatting not working

  • 30 September 2022
  • 1 reply
  • 78 views

Badge +2

I am using Qualtrics to create an assessment for students. At the beginning of each module, I present some data in tables. To make the tables easier to read, I added some simple formatting in html (e.g., using for heading cells instead of , centering the data in the cells, etc.). When I click on the Rich Text editor, the tables appear formatted correctly. However, when I deploy the survey, the formatting doesn't appear and instead I get the ugly vanilla html formatting. Any idea on how to make what appears in the rich text editor the same as what appears for users?


1 reply

Userlevel 7
Badge +27

Add a class to your html table element, then add Custom CSS rules for that class. For example:
table.myClass {/*styles go here*/}
table.myClass th {/*styles go here */}
table.myClass td {/*styles go here */}


Leave a Reply