In version 2.0 the course catalog could be organize. eg Compliance Catalog, Sales Catalog etc.
In version 2.2 it just list all the courses.
there is also an error in the curricula tab, Applica filtro, Azzera filtro . I change to Apply filter and Reset filter
in the file tablefilter.php line 17, 18. The error is not the word but the color.
<div class="input-group">
<a href='#' id='<?php echo $id; ?>_filter_set1'>Apply filter</a><br><br>
<a href='#' id='<?php echo $id; ?>_filter_reset'>Reset filter</a>
</div>
Now the color suppose to be white (main.min.css). In the elearning tab is working correctly,
but in the curricula tab the text color is black and there is not an underline.
#course_search_filter_reset,
#course_search_filter_set1 {
display: block;
font-size: 12px;
line-height: 20px;
color: #fff
}
#course_search_filter_reset:hover,
#course_search_filter_set1:hover {
text-decoration: underline
}
Thank You
course catalog
Re: course catalog
One possible solution is to create an id in the css (main.min.css) file for coursepath_search.
#course_search_filter_set1,
#course_search_filter_reset,
#coursepath_search_filter_set1,
#coursepath_search_filter_reset {
display: block;
font-size: 12px;
line-height: 20px;
color: white; }
#course_search_filter_set1:hover,
#coursepath_search_filter_set1:hover,
#course_search_filter_reset:hover,
#coursepath_search_filter_reset:hover {
text-decoration: underline; }
#course_search_filter_set1 ~ br,
#coursepath_search_filter_set1 ~ br {
display: none; }
That work for me.
#course_search_filter_set1,
#course_search_filter_reset,
#coursepath_search_filter_set1,
#coursepath_search_filter_reset {
display: block;
font-size: 12px;
line-height: 20px;
color: white; }
#course_search_filter_set1:hover,
#coursepath_search_filter_set1:hover,
#course_search_filter_reset:hover,
#coursepath_search_filter_reset:hover {
text-decoration: underline; }
#course_search_filter_set1 ~ br,
#coursepath_search_filter_set1 ~ br {
display: none; }
That work for me.