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
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
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;
}