Forum Discussion
davelees
5 months agoCommunity Member
Change the color of this overlay in the desktop.min.css file
 Does anyone know what style you have to change in the desktop.min.css file to change the color of the overlay that pops up behind the feedback box in a quiz? (see attached) 
- 5 months ago
The default feedback slides have a white transparent background. All you need to do is, access the Feedback Master slides and turn off the background to No Fill. Or you can do that individually for each feedback layer. Right click, Format Background, No Fill.
 
Nedim
5 months agoCommunity Member
Not sure. Could it be .layer-modal-bg? Try:
const style = document.createElement('style');
style.textContent = `
  .layer-modal-bg { background: #4BACC6 !important; }
`;
document.head.appendChild(style);
Related Content
- 11 months ago
 - 11 months ago