Skip to main content
Answer

Removing elements - new course player

  • April 8, 2024
  • 2 replies
  • 151 views

JZenker
Guide II
Forum|alt.badge.img+2

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

Best answer by gstager

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 **/

 

2 replies

gstager
Hero III
Forum|alt.badge.img+8
  • Hero III
  • Answer
  • April 8, 2024

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 **/

 


JZenker
Guide II
Forum|alt.badge.img+2
  • Author
  • Guide II
  • April 8, 2024

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 -