Forum Discussion
EdMcLean-f33352
4 years agoCommunity Member
Quiz review - Remove "Correct/Incorrect" bar from quiz review slides
Is there a way to remove the red (for incorrect) and green (for correct) bar from quiz review slides?
ThomasMennen
2 years agoCommunity Member
Hey all,
Since there still isn't a way to get rid of the banner, I share my workaround.
In the feedback layer I added a Javascript trigger which hides the bar with CSS:
document.head.innerHTML += "<style>
div[data-acc-text='Correct'],
div[data-acc-text='Incorrect']{
display: none;}
</style>";
Hope this is of any use,
and feel free to comment on my code. :)
- LinWong-a3121852 years agoCommunity Member
Hi Thomas,
Can I ask if you add this on the Feedback Master for the Review Layer, or you add this individually on the Review Layer for each question?
I tried on both but it didn't work for me.
Thank you!