Skip to main content

Hello!  Has anyone come up with a solution for the hidden unenrollment button in the ILT session page of the new course player? One solution i had is to direct learners to the secret menu using the description field for the session. Unfortunately, this is very small and hard to see, though it does appear right up at the top under the session information. Can CSS be added to the description field to format it? Other ideas welcome!

Following. We have the same issue. It is very hard for our learners to find the unenroll button so they can enroll in another session.


Hi there,

You can use the following CSS to target the session description. Please note this would be in place for all session descriptions.

/** Amends text found in Session Description START **/

lrn-widget-session-info .ui-paragraph-content {
font-size: 23px!important;
font-weight: bold;
color: #FF0000
}

/** Amends text found in Session Description END **/

 

It would look something like this, feel free to adjust the CSS accordingly and test in a Sandbox environment if available before deploying to Production.

 

 


Thanks DPatel - I like your thinking. It reveals to me the reason I believe we can’t take this path - we have sessions that don’t allow self-enrollment, so if it’s universal, it wouldn’t make sense for those courses. I so appreciate your trying and I will play with it in the sandbox in any case. Thank you!


No problems @vicki murray-kurzban 

 

The following CSS allows you to target certain courses if required. Change the XXX to the course ID which can be found in the URL of the course. You can then apply this for courses necessary.

 

/** Amends text found in Session Description START **/

.lrn-course-overview-XXX lrn-widget-session-info .ui-paragraph-content {
font-size: 24px!important;
font-weight: bold;
color: #FF0000;
max-height: unset!important
}

/** Amends text found in Session Description END **/

 


Reply