PennController for IBEX › Forums › Support › Issue with changing font size in FlashSentence and AcceptabilityJudgment › Reply To: Issue with changing font size in FlashSentence and AcceptabilityJudgment
April 26, 2022 at 1:02 pm
#8109
Keymaster
Hi Radim,
FlashSentence and AcceptabilityJudgmentSentence do not introduce a node with a class name of the form CONTROLLERNAME-sentence the way DashedSentence does, but of the form CONTROLLERNAME-flashed-sentence. So do this instead:
.FlashSentence-flashed-sentence {
font-size: 30;
}
.DashedSentence-sentence {
font-size: 30;
}
.AcceptabilityJudgment-flashed-sentence {
font-size: 30;
}
Jeremy