While the LMS has always included a Course Search function, many user want easier access to the Course Catalog. To facilitate this we've added a Course Search widget to the LMS page header.
If you are are an LMS Administrator and don't want this feature displayed on your LMS, you can turn it off by updating your STYLESHEET.CSS by adding "display: none" to the following styles:
- #ctlTemplate_regHeader_ctlHeaderUser_headerCourseSearch div#headerCourseSearch
- #ctlTemplate_regHeader_ctlHeaderUser_ctlSimpleCourseSearch_lnkAdvancedSearch
- #ctlTemplate_regHeader_ctlHeaderUser_ctlSimpleCourseSearch_imgCourseSearch
For example:
/* Header Course Search */
#ctlTemplate_regHeader_ctlHeaderUser_headerCourseSearch, div#headerCourseSearch
{
position: absolute;
right: 0px;
top: 25px;
color: #036;
font-weight: bold;
font-size: 11px;
display: none;
}
#ctlTemplate_regHeader _ctlHeaderUser_ctlSimpleCourseSearch_lnkAdvancedSearch
{
float:right;
font-size:xx-small;
padding-right:10px;
text-decoration:none;
height:9px;
display: none;
}
#ctlTemplate_regHeader_ctlHeaderUser_ctlSimpleCourseSearch_imgCourseSearch
{
border-style :none;
display: none;
}