i’ve tried various combinations of CSS hiding these sections & classes, saved, reloaded - and these UI elements are still showing.
I must be missing something pretty basic.
Page 1 / 1
Hi there,
Give the following CSS a go
/* Hide Expired Certifications and Overdue courses on Team Member Card START */ mng-team-member-card .kpi-wrapper { display: none!important } /* Hide Expired Certifications and Overdue courses on Team Member Card END */
Hi there,
Give the following CSS a go
/* Hide Expired Certifications and Overdue courses on Team Member Card START */ mng-team-member-card .kpi-wrapper { display: none!important } /* Hide Expired Certifications and Overdue courses on Team Member Card END */
Thank you thank you thank you! That worked.
Any idea if the three dots “...” for the “Actions” button can be expanded on the UI? It would be helpful for our managers to see the word “Actions” there instead of just 3 dots.
When i inspect the “...” in DevTools this is what i get.
Not a great deal can be done on the ellipsis, only workaround I have is adding text to highlight this maybe
Have a go with the following CSS
/* Add text to Team Manager Card START */ mng-team-member-card .dcb-ui-card-footer::before { content: "Click the ellipsis for more"; display: block; font-weight: bold; color: #007bff; } /* Add text to Team Manager Card END */
@DPatel thank you so much. Appreciate the help big time!!