Skip to main content

Hi,

Looking to hide the Score on the My Activities page under courses, ILT  and external training.

Does anyone know how to do this so its the how column and not just the title.

 

@Sophie.Johnson 

Give this a spin. Always be sure to verify that changes do not affect other parts of your system.

/** This will hide the Score Header **/
#course-management-grid_c8 {
display: none;
}

/** This will hide the cells under the Score Header **/
#course-management-grid > div.gridItemsContainer > table > tbody > tr > td:nth-child(9) {
display: none;
}

 


Thank you so much!!


Reply