Totara Learn Open Discussions

Title page in a lesson

 
? ?
Title page in a lesson
di ? ? - Wednesday, 18 September 2019, 03:32
 

Hi

Is there a way that you don’t have to display the title page at the top of the page in a lesson? 

Thanks

Benn Cass
Re: Title page in a lesson
di Benn Cass - Thursday, 19 September 2019, 00:14
Gruppo Partners

How about some more custom CSS? 


#page-mod-lesson-view #region-main h3 {

display:none;

}


Bare in mind though that this will hide all h3 tags so don't use h3 tags in your content.

or you could add in the below instead but it'll depend on how your theme is structured to whether this works.


#page-mod-lesson-view #region-main h3:first-of-type {

display:none;

}


? ?
Re: Title page in a lesson
di ? ? - Thursday, 19 September 2019, 01:19
 

You are a CSS Wizard!  I just went with the second one - worked a treat.

thanks