(1) How do you change the font size and style (i.e., make bold) of text responses in continuous sum questions?
(2) How can “%” show up on each line outside the continuous sum response box.
To format the text in those questions, review the documentation here. For example, to bold you would use:
.sg-type-continuous-sum .sg-counter td {
font-weight: bold;
}
Regarding your second question, you can simply put the “%” in the label and change the validation to capture a number instead of percentage. Though I’m not sure what the benefit of doing that would be. But if you need to keep capturing the input as a percentage, I do not think you can “hide” the percent symbol.
Hi Orie,
The font-weight can be changed with a little bit of custom CSS code. The following CSS can be pasted in the CSS/HTML Editor found at the bottom of the survey preview on the Style tag.
.sg-type-continuous-sum .sg-continuous-sum-flipped .sg-input-text, .sg-type-continuous-sum .sg-continuous-sum-rows .sg-input-text {
font-weight: bold;
}
As far as placing a % sign outside the box. This customization is considerably more difficult. You might want to touch with our programming service team who does customizations like this for a fee:
https://www.surveygizmo.com/programming-services/
The SurveyGizmo Team