Forum Discussion

davelees's avatar
davelees
Community Member
21 days ago
Solved

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)

  • 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.

5 Replies

  • Isn't that overlay part of the slide, and the slide is set to dialogue so it overlays the player.

  • Nedim's avatar
    Nedim
    Community 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);

     

  • 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.