OK, now I'm trying to adjust the CSS for the question box in the survey-text plugin. Ideally, I would like to increase the size of the box and the font size with which the answer is typed.
Below is what I have so far for the head. Changing the values for the .jspsych-survey-text-question allows me to adjust the spacing between questions, but I can't seem to get the question box or its text to be larger.
Thanks.
<head>
<meta charset="UTF-8">
<title>Test</title>
<style>
#jspsych-survey-text-next { font-size: 16px; height: 50px; width: 140px; }
.jspsych-button-response-button { font-size: 16px; height: 50px; width: 140px; }
.jspsych-survey-text-question { font-size: 16px; width: 300px; height: 500px;}
</style>
</head>