Best practice forum (Archived)

Increasing space for learning

 
Simon Coggins
Re: Increasing space for learning
by Simon Coggins - Tuesday, 5 June 2012, 12:49 AM
Group Totara

Have a look at the classes that are applied to the body tag on various pages - moodle adds a lot of useful classes that you might be able to make use of. For example, within lesson modules the "mod-lesson" class is added so you can isolate styles to apply only within the lesson module like this:

.mod-lesson h1 {
    display: none;
}

that should only hide level 1 headings within the lesson module.

Simon