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
You can use the JoomdleBS theme especially developed for Joomdle sites.
https://moodle.org/plugins/theme_joomdlebs
Also available in the Joomdle site.
Fernando,
This is great, thanks! Now i only have to remove the breadcrumbs and i'm set to go.
Peter
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.
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