Moodle 4.0 has introduced a new enhancement for Kaltura users by inserting a My Media button in the top banner of your site. See more information here: https://github.com/kaltura/moodle_plugin/issues/359
If you do not want this to be displayed, you can remove it using Custom CSS by adding the following CSS code, as shown below.
For Snap Theme:
Navigate to Site Administration > Appearance > Themes > Snap > Custom CSS
Copy and paste the following into the Custom CSS text box:
/*Hide Media from the top menu*/
#snap-custom-menu-header{
display:none !important;
}
.snap-custom-menu-spacer{
padding-top:0;
}
For Boost Theme:
Navigate to Site Administration > Appearance > Additional HTML
Copy and paste the following into the Before BODY is closed text box:
/* Hide Media on the top menu from boost theme*/
.primary-navigation .navbar-nav li:nth-child(5){
display:none !important;
}
Comments
0 comments
Article is closed for comments.