With the new player I was having a difficult time hiding the “lesson completed successfully” banner that pops up when you enter an HTML training material. It’s not there for very long, but I think I figured it out.
If you don’t like messing with CSS, you can go into the Localization tool, search for “Lesson completed successfully”, and remove the verbiage there by substituting a space for the existing text in red below:
standard | The lesson has been completed successfully | Lesson completed successfully |
If you can/want to change the CSS, this code did the trick for me:
/* hide the player/toast banner */
.dcb-ui-toasts-container-botton-center {
visibility: hidden !important;
display: none !important;
}