How to hide Section number text while using Edwiser Course Format - Card Layout
For Moodle 4.0 and above:
Add this CSS to Edwiser RemUI setting > General setting > Custom CSS section to hide Section name while using Edwiser Course Format - Card Layout
body#page-course-view-remuiformat .remui-format-card.single-section-format .sections .section .section-details .general-single-card .header-progresbar-wrapper .section-title span.sno {
display:none !important;
}
For Moodle 3.11 and below
Add this CSS to Edwiser RemUI setting > General setting > Custom CSS section to hide Section name while using Edwiser Course Format - Card Layout
body#page-course-view-remuiformat .remui-format-card.all-section-format .section .sectionname {
display:none;
}