diff --git a/src/widjets-display-user-tzcld.js b/src/widjets-display-user-tzcld.js
index a7615fc38b3ff127612232e3b0e25917d6c7c139..e9bc81cb60ac087bdb8feb8ac277dbd8c0ecf2dd 100644
--- a/src/widjets-display-user-tzcld.js
+++ b/src/widjets-display-user-tzcld.js
@@ -130,15 +130,15 @@ import("./utils.js").then((utils) => {
           for(let job of tzcldprofile.jobs) {
               if(await job.organisation !="") {
                   if(await job.link !="") {
-                      render +=  `<h3 class="position text-medium padding-bottom-large">${await job.position} à <a class="link text-top" href="${await job.link}">${await job.organisation}</a></h3>`;
+                      render +=  `<h3 class="position text-medium padding-bottom-large whitespace-normal">${await job.position} à <a class="link text-top" href="${await job.link}">${await job.organisation}</a></h3>`;
                   } else {
-                      render +=  `<h3 class="position text-medium padding-bottom-large">${await job.position} à ${await job.organisation}</h3>`;
+                      render +=  `<h3 class="position text-medium padding-bottom-large whitespace-normal">${await job.position} à ${await job.organisation}</h3>`;
                   }
               } else {
-                  render +=  `<h3 class="position text-medium padding-bottom-large">${await job.position}</h3>`;
+                  render +=  `<h3 class="position text-medium padding-bottom-large whitespace-normal">${await job.position}</h3>`;
               }
 
-              render +=  `<div class="address padding-bottom-small">${await job.address} <br/> ${await job.postal_code} ${await job.city}</div>`;
+              render +=  `<div class="address padding-bottom-small whitespace-normal">${await job.address} <br/> ${await job.postal_code} ${await job.city}</div>`;
               if ((await job.mobile_phone != '') || (await job.phone != '')) {
                   render +=  `<div class="phone padding-bottom-small">`;
               }
@@ -192,7 +192,7 @@ import("./utils.js").then((utils) => {
               tzcldprofile[ignore.trim()] = null;
               }
           }
-          let render = `<div class="segment full margin-top-small margin-bottom-small user-first-job">`;
+          let render = `<div class="segment full margin-top-small margin-bottom-small user-first-job whitespace-normal">`;
           for(let job of tzcldprofile.jobs) {
               if(await job.organisation !="") {
                   if(await job.link !="") {