HI can anybody advise on removing the ID code from the course player?
Ive tried using
subtitle-block ng-star-inserted {
display: none !important;
But it did not work. any help?
HI can anybody advise on removing the ID code from the course player?
Ive tried using
subtitle-block ng-star-inserted {
display: none !important;
But it did not work. any help?
Give this a shot and see if it works for you.
/** Remove ID from Course **/
span.subtitle-block.ng-star-inserted {
display: none;
}
Worked great! thanks a lot!
any tips on how you knew that the span. needs to be included?
we are facing multiple places where we can’t find the right CSS specification to address the changes needed.
thanks again,
Well, technically, this should work as well…
/** Remove ID from Course **/
.subtitle-block.ng-star-inserted {
display: none;
}
Without span
What I noticed right away in the example you posted is that the decimals and the closing curly brace were missing which would be a culprit there.
You need a . to refer to a class and
a # to refer to an ID
Thanks for this
Hi! Is there also a way to remove it from the course overview page - the one they land on and then click enroll?
/** Hide course ID on page **/
span.course-info.text-grey-mid {
display: none;
}
/** End hide course ID on page **/
Enter your email address or username and password below to log in to Docebo Community. No account yet? Create an account
Enter your E-mail address. We'll send you an e-mail with instructions to reset your password.