Skip to content
English
  • There are no suggestions because the search field is empty.

HR Learn: How to Hide Module Scores from Learners

If administrators would like to hide user module scores from the learners, they can achieve this by placing the following CSS code modifications into the CSS Editor: 1 table#grid_enrollment_lessons th:nth-child(3) 2{ 3 display:none; 4} 5 6 table#grid_enro

If administrators would like to hide user module scores from the learners, they can achieve this by placing the following CSS code modifications into the CSS Editor:

c.png

1 table#grid_enrollment_lessons th:nth-child(3) 
2{ 
3 display:none; 
4} 

6 table#grid_enrollment_lessons td:nth-child(3) 
7{ 
8 display:none; 
9}