Instructions below H1

I would like to add instructions in my CRM so that our people can know what each section is used for. For example, under Projects, I would like to add “Projects are for new projects and ongoing projects that are more than 20 hours in length. Else, use cases”

See attached image. Many thanks

Hello @Grow ,
Yes, that is possible. Follow these steps to have instruction on your list view page in an upgrade-safe way.
Copy file from

modules/Project/views/view.list.php

and paste it on custom directory

custom/modules/Project/views/view.list.php

Now add this function in your custom file of view.list.php

public function getModuleTitle($show_help = true)
{
$sInstruction = parent::getModuleTitle($show_help);
return $sInstruction." Your Instruction goes here";
}

That’s it!

Thanks & Regards,
Team Urdhva Tech

thank you, that worked wonderfully