remove navbar completely

remove navbar completely

by Peter Haasdijk -
Number of replies: 4

Hi,

I'm using the standard clean theme and need to remove the navbar on all pages. That is because moodle is embedded in another website, made in joomla. Navigation through the courses and profile editing is done in joomla.

How do i do this?

Peter

Average of ratings: -
In reply to Peter Haasdijk

Re: remove navbar completely

by Fernando Acedo -
Picture of Plugin developers Picture of Testers

You can use the JoomdleBS theme especially developed for Joomdle sites.

https://moodle.org/plugins/theme_joomdlebs

Also available in the Joomdle site.

In reply to Fernando Acedo

Re: remove navbar completely

by Peter Haasdijk -

Fernando,

This is great, thanks! Now i only have to remove the breadcrumbs and i'm set to go.

Peter

In reply to Peter Haasdijk

Re: remove navbar completely

by Fernando Acedo -
Picture of Plugin developers Picture of Testers

This theme was created for Joomdle sites using the wrapper and some moodle parts were deliberately removed. But it is not recommended to remove the breadcrumb because when you are in moodle you need it instead the Joomla breadcrumb.

An option could be to remove the Joomla breadcrumb when you are in the wrapper page.


In reply to Peter Haasdijk

Re: remove navbar completely

by Richard Oelmann -
Picture of Core developers Picture of Plugin developers Picture of Testers

something like

header.navbar {display:none;}

in the customcss should do it, although you could go into the layout files and remove the <header> from there so it isn't processed in the first place. However, if you do that, you really should do it in a clone of the theme, or your changes will get overwritten any time you upgrade Moodle.


Richard