How to hide the pop-over completion message for HTML content

  • 30 July 2021
  • 4 replies
  • 146 views

Userlevel 6
Badge +2

If you’re using the HTML training material type and really want to get rid of that instantaneous pop-over saying the activity is completed, here’s some CSS code to hide it:

 

/*Hide pop-over completion message for HTML content*/
div.intime-completed.ng-star-inserted > div {

    display: none !important;

}

 

The activity will still be marked completed everywhere it needs to be.  This just prevents the pop-over message from displaying.


4 replies

Userlevel 7
Badge +7

HI @elamast thanks for adding this...we should have this post in our new discussion group, HTML & CSS where we are gathering all similar types of posts...perhaps @Adam Ballhaussen can move this over for you?

Userlevel 7
Badge +3

This is awesome @elamast, thank you for sharing! @lrnlab good call. I’ve moved this to the HTML & CSS discussion category

Userlevel 7
Badge +7

This is awesome @elamast, thank you for sharing! @lrnlab good call. I’ve moved this to the HTML & CSS discussion category

many thanks Adam...

Userlevel 6

You are the man! thank you!

 

Reply