Best Answer

Removing elements - new course player

  • 8 April 2024
  • 2 replies
  • 49 views

Userlevel 6

Hello,

Has anyone had any luck with

display: none;

on either of these two elements on the new course player?

Can’t get anything to stick - thanks

icon

Best answer by gstager 8 April 2024, 18:18

View original

2 replies

Userlevel 7
Badge +5

Give these a shot - and remember to do more thorough testing to make sure this does not adversely affect anything else.

/** Remove the Completion Status **/
lrn-widget-content-completion-status {
display:none;
}
/** End Remove the Completion Status **/

/** Remove the Next and Previous Buttons from the player **/
.lrn-training-material-header-next-prev-buttons {
visibility:hidden;
}
/** End Remove the Next and Previous Buttons from the player **/

 

Userlevel 6

Give these a shot - and remember to do more thorough testing to make sure this does not adversely affect anything else.

 

That worked - thanks Greg. Will investigate why mine wasn’t taking/what I was doing wrong -

Reply