Skip to main content
Best Answer

CSS to hide lesson details, tags, etc. in new course player

  • 11 April 2024
  • 1 reply
  • 129 views

Hello,

I’m looking for a little CSS help to hide the “Lesson Details” block of metadata and tags in the course player. I saw in a related post that someone shared code a year ago to hide tags appearing in chapters, but I don’t believe that will work with the current course player?

 

Any advice?

Thank you!

1 reply

Hi @cfranklin, I found a related post by @gstager which solved this for me:

/** Remove Tags **/

.lrn-course-player-lesson-info {
display:none;
}

/** End Remove Tags **/

 

Reply