Reply To: Issue with changing font size in FlashSentence and AcceptabilityJudgment

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

#8109
Jeremy
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