Essential Theme: Eliminate the number of courses shown on the icon of the categories

Essential Theme: Eliminate the number of courses shown on the icon of the categories

על ידי Carlos Maroto Belmonte בתאריך
מספר תגובות: 1

Moodle: 2.8.5+

Essential Theme version: 2.8.1.10

Hi, I wonder how I can eliminate the number of courses shown on the icon of the categories in the home of Moodle.


Thank you

ממוצע דרוגים: -
בתגובה ל: Carlos Maroto Belmonte

Re: Essential Theme: Eliminate the number of courses shown on the icon of the categories

על ידי Marek Kancelarek בתאריך

I have this in the custom css field to hide the numbers:


/* numbers */
.numberofcourse,
.categorypicker,
#coursesearch {
display:none;
}

Judging by the classes and ids this may hide some other things too, but I forgot what exactly, so start with just

.numberofcourse, {
display:none;
}
and add the rest if needed.

Depending on your other customizations you may need

display:none !important;

instead.