Hi animtank, thank you for your patronage!
HD Quiz inherits things like font sizes directly from your theme. However, everything can be overrideen with CSS.
Most themes will allow the following.
Log into your site and from the admin menu, select Appearance -> Customize. Then select the Additional CSS tab. Paste in the following CSS to change the answer font size.
.hdq_label_answer {
font-size: 1.2em !important;
}
The 1.2em
basically means “Whatever size my theme originally choose times 1.2”. So if your theme makde the font 10px, then this override will make it 12px instead. Feel free to play around with the 1.2
to make it smaller or larger as needed.
NOTE: I see you are using the autoptimize plugin. You may need to clear the site cache after making this change to make sure the plugin creates a new cache for you.