How to hide the search bar in the Indigo LMS start page

Hi, How do we go about hiding the search bar in the LMS start page? Since there are only two courses, we don’t need (for now) the search bar.

Thanks for the inputs.

Newt

Hi @newbie.py,

One easy way is to add a new CSS rule to the theme to control visibility. You can try adding the style to theme/lms/static/sass/partials/lms/theme/_extras.scss.

.home>header .title .course-search {
    display: none;
}

More information:

Hope this helps!
Tony

1 Like

This works! Thanks a lot for this Tony.

1 Like