I found this formula here:
tr.ChoiceRow{
background-color:#F0F0F0;
}
tr.ChoiceRow.ReadableAlt{
background-color:white;
}
Which Is good for Matrix Table type. I want to do the same style for other types of questions like text entery, side by side etc.
Page 1 / 1
tr{
background-color:#F0F0F0;
}
tr.ReadableAlt{
background-color:white;
}
The problem with the form rows is that the background extends till the end, i.e. beyond the input field also.
To limit it, you can td to each of these elements.
tr td:not(.ControlContainer){
background-color:#F0F0F0;
}
tr.ReadableAlt td:not(.ControlContainer){
background-color:white;
}
This will limit the background change to the text.
For text entry question (use in html view of question):
Thanks a lot
Leave a Reply
Enter your E-mail address. We'll send you an e-mail with instructions to reset your password.