diff --git a/htdocs/fichinter/admin/fichinter_extrafields.php b/htdocs/fichinter/admin/fichinter_extrafields.php
index 07cd83b1e02..9c7710b083a 100644
--- a/htdocs/fichinter/admin/fichinter_extrafields.php
+++ b/htdocs/fichinter/admin/fichinter_extrafields.php
@@ -63,7 +63,7 @@ require DOL_DOCUMENT_ROOT.'/core/actions_extrafields.inc.php';
$textobject = $langs->transnoentitiesnoconv("Interventions");
-llxHeader();
+llxHeader('', '', '', '', 0, 0, '', '', '', 'mod-fichinter page-admin_fichinter_extrafields');
$linkback = ''.$langs->trans("BackToModuleList").'';
print load_fiche_titre($langs->trans("InterventionsSetup"), $linkback, 'title_setup');
diff --git a/htdocs/fichinter/admin/fichinterdet_extrafields.php b/htdocs/fichinter/admin/fichinterdet_extrafields.php
index 23a9b412b31..04d9938102f 100644
--- a/htdocs/fichinter/admin/fichinterdet_extrafields.php
+++ b/htdocs/fichinter/admin/fichinterdet_extrafields.php
@@ -63,7 +63,7 @@ require DOL_DOCUMENT_ROOT.'/core/actions_extrafields.inc.php';
$textobject = $langs->transnoentitiesnoconv("Interventions");
-llxHeader();
+llxHeader('', '', '', '', 0, 0, '', '', '', 'mod-fichinter page-admin_fichinterdet_extrafields');
$linkback = ''.$langs->trans("BackToModuleList").'';
print load_fiche_titre($langs->trans("InterventionsSetup"), $linkback, 'title_setup');
diff --git a/htdocs/fichinter/agenda.php b/htdocs/fichinter/agenda.php
index 9e08562164a..21ba0b718dd 100644
--- a/htdocs/fichinter/agenda.php
+++ b/htdocs/fichinter/agenda.php
@@ -126,7 +126,7 @@ $form = new Form($db);
if ($object->id > 0) {
$title = $langs->trans("Agenda");
$help_url = 'EN:Module_Agenda_En|DE:Modul_Terminplanung';
- llxHeader('', $title, $help_url);
+ llxHeader('', $title, $help_url, '', 0, 0, '', '', '', 'mod-fichinter page-card_agenda');
if (isModEnabled('notification')) {
$langs->load("mails");
diff --git a/htdocs/fichinter/card-rec.php b/htdocs/fichinter/card-rec.php
index 9eab5a852c3..b0faa6170d0 100644
--- a/htdocs/fichinter/card-rec.php
+++ b/htdocs/fichinter/card-rec.php
@@ -264,7 +264,7 @@ if ($action == 'add') {
$help_url = '';
-llxHeader('', $langs->trans("RepeatableIntervention"), $help_url);
+llxHeader('', $langs->trans("RepeatableIntervention"), $help_url, '', 0, 0, '', '', '', 'mod-fichinter page-card-rec');
$form = new Form($db);
$companystatic = new Societe($db);
diff --git a/htdocs/fichinter/card.php b/htdocs/fichinter/card.php
index 6a81d851db1..98b22b52f24 100644
--- a/htdocs/fichinter/card.php
+++ b/htdocs/fichinter/card.php
@@ -826,7 +826,7 @@ if (isModEnabled('project')) {
$help_url = 'EN:Module_Interventions';
-llxHeader('', $langs->trans("Intervention"), $help_url);
+llxHeader('', $langs->trans("Intervention"), $help_url, '', 0, 0, '', '', '', 'mod-fichinter page-card');
if ($action == 'create') {
// Create new intervention
diff --git a/htdocs/fichinter/contact.php b/htdocs/fichinter/contact.php
index f22385e695b..e02f37995f5 100644
--- a/htdocs/fichinter/contact.php
+++ b/htdocs/fichinter/contact.php
@@ -105,7 +105,7 @@ $contactstatic = new Contact($db);
$userstatic = new User($db);
$formproject = new FormProjets($db);
-llxHeader('', $langs->trans("Intervention"));
+llxHeader('', $langs->trans("Intervention"), '', '', 0, 0, '', '', '', 'mod-fichinter page-card_contact');
// Mode vue et edition
diff --git a/htdocs/fichinter/document.php b/htdocs/fichinter/document.php
index 5ec97fd1908..9170cd503fe 100644
--- a/htdocs/fichinter/document.php
+++ b/htdocs/fichinter/document.php
@@ -95,7 +95,7 @@ include DOL_DOCUMENT_ROOT.'/core/actions_linkedfiles.inc.php';
$form = new Form($db);
-llxHeader('', $langs->trans("Intervention"));
+llxHeader('', $langs->trans("Intervention"), '', '', 0, 0, '', '', '', 'mod-fichinter page-card_document');
if ($object->id) {
$object->fetch_thirdparty();
diff --git a/htdocs/fichinter/index.php b/htdocs/fichinter/index.php
index d35cc71b350..6d8376bb54b 100644
--- a/htdocs/fichinter/index.php
+++ b/htdocs/fichinter/index.php
@@ -63,7 +63,7 @@ $formfile = new FormFile($db);
$help_url = "EN:ModuleFichinters|FR:Module_Fiche_Interventions|ES:Módulo_FichaInterventiones";
-llxHeader("", $langs->trans("Interventions"), $help_url);
+llxHeader("", $langs->trans("Interventions"), $help_url, '', 0, 0, '', '', '', 'mod-fichinter page-index');
print load_fiche_titre($langs->trans("InterventionsArea"), '', 'intervention');
diff --git a/htdocs/fichinter/list.php b/htdocs/fichinter/list.php
index 58aae628c25..893ee0bc766 100644
--- a/htdocs/fichinter/list.php
+++ b/htdocs/fichinter/list.php
@@ -412,7 +412,7 @@ if ($num == 1 && getDolGlobalString('MAIN_SEARCH_DIRECT_OPEN_IF_ONLY_ONE') && $s
// Output page
// --------------------------------------------------------------------
-llxHeader('', $title, $help_url, '', 0, 0, $morejs, $morecss, '', 'bodyforlist'); // Can use also classforhorizontalscrolloftabs instead of bodyforlist for no horizontal scroll
+llxHeader('', $title, $help_url, '', 0, 0, $morejs, $morecss, '', 'bodyforlist mod-fichinter page-list'); // Can use also classforhorizontalscrolloftabs instead of bodyforlist for no horizontal scroll
$arrayofselected = is_array($toselect) ? $toselect : array();
diff --git a/htdocs/fichinter/note.php b/htdocs/fichinter/note.php
index 98ec1fdb7fc..eddf85e7ec3 100644
--- a/htdocs/fichinter/note.php
+++ b/htdocs/fichinter/note.php
@@ -68,7 +68,7 @@ if (empty($reshook)) {
* View
*/
-llxHeader('', $langs->trans("Intervention"));
+llxHeader('', $langs->trans("Intervention"), '', '', 0, 0, '', '', '', 'mod-fichinter page-card_note');
$form = new Form($db);
diff --git a/htdocs/fichinter/stats/index.php b/htdocs/fichinter/stats/index.php
index baec6c0a247..cdd926c9471 100644
--- a/htdocs/fichinter/stats/index.php
+++ b/htdocs/fichinter/stats/index.php
@@ -64,7 +64,7 @@ $objectstatic = new Fichinter($db);
$title = $langs->trans("InterventionStatistics");
$dir = $conf->ficheinter->dir_temp;
-llxHeader('', $title);
+llxHeader('', $title, '', '', 0, 0, '', '', '', 'mod-fichinter page-stats_index');
print load_fiche_titre($title, '', 'intervention');