Skip to main content

We are looking to hide the Instructor panel (we changed to Program Manager) as it offers no value. It shows a name and thumbnail. No contact info at all. Can this be hidden or removed with CSS?

 

Which brings me to my 2nd request. 

We do add the contact info for our Program Managers in the course descriptions, but by default it’s collapsed in the new course player. Can this be updated to be expanded by default when a user enters a course?

Thank you for any and all help!

 

following...thx for posting.


following


Hi there,

The following CSS should aid here.

/* Show More in Course Description Course */

lrn-widget-content-description .ui-paragraph-content {
max-height: unset!important;
}

 


Hi there,

The following CSS should aid with removing the session instructors

/* Removes Session Instructors Globally */
lrn-widget-content-instructors {
display: none!important;
}

The CSS below aids with removing the Session Instructors from a specific course. Change XX to the Course ID

/* Removes Session Instructors from a Specific Course */
.lrn-course-overview-XX lrn-widget-content-instructors {
display: none!important;
}

 


Reply