Skip to main content

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;

}

 

Interesting… is that standard item being used for anything other than HMTL content? I’m nervous about messing around in localization but we are trying to remove that pop-up!

 


Interesting… is that standard item being used for anything other than HMTL content? I’m nervous about messing around in localization but we are trying to remove that pop-up!

 

The localization change is the easiest, but it doesn’t get rid of the pop-up.  It just removes the text so it’s more ambiguous about why it popped up.

The CSS solution is a bit better, but you may have to do some experimentation.  This is the particular item I targeted.  You could try one of the others to see what works best for you:

I did notice I had to clear my cache to see the changes.

 


Reply