Hello! I’m looking for CSS support in eliminating the details from the course cards in the catalog and learning plan. For example, I’d like to remove the footer, type description, and language.
I’ve checked fark.tools and there is nothing included regarding these items. I’ve also found a thread elsewhere where someone mentions doing this but the code provided does not work when I adjust it to apply to all pages and all course widgets.
/* Hides 'new' status on course tiles */
.ui-badge-status-wrapper{
display: none!important;
}
/* Hides enrollment status */
#doc-widget-156 .item-status-box{
display: none!important;
}
/* Hides Course type */
#doc-widget-156 .type-box{
display: none!important;
}
/* Hides language */
#doc-widget-156 .course-type{
display: none!important;
}
/* Hides tile footers */
#doc-widget-168 .ui-card-catalog-content .ui-card .ui-card-footer{
display: none!important;
}