diff --git a/layouts/v7/modules/Inventory/partials/EditViewContents.tpl b/layouts/v7/modules/Inventory/partials/EditViewContents.tpl
index 9f141adc3fca5ed65cd21a5214e8c242417ce536..4c1290da8a0b2533f94296e856e74a9a8e1aac3d 100644
--- a/layouts/v7/modules/Inventory/partials/EditViewContents.tpl
+++ b/layouts/v7/modules/Inventory/partials/EditViewContents.tpl
@@ -140,7 +140,7 @@
                              {/if}
                                
                          </td>
-                         <td class="fieldValue" {if $FIELD_MODEL->getFieldDataType() eq 'boolean'} style="width:25%" {/if} {if $FIELD_MODEL->get('uitype') eq '19'} colspan="3" {assign var=COUNTER value=$COUNTER+1} {/if}>
+                         <td {if in_array($FIELD_MODEL->get('uitype'),array('19','69')) || $FIELD_NAME eq 'description'} class="fieldValue fieldValueWidth80" colspan="3" {assign var=COUNTER value=$COUNTER+1} {else} class="fieldValue" {/if}>
                              {if $FIELD_MODEL->getFieldDataType() eq 'image' || $FIELD_MODEL->getFieldDataType() eq 'file'}
                                  <div class='col-lg-4 col-md-4 redColor'>
                                      {vtranslate('LBL_NOTE_EXISTING_ATTACHMENTS_WILL_BE_REPLACED', $MODULE)}
diff --git a/layouts/v7/modules/Users/partials/EditViewContents.tpl b/layouts/v7/modules/Users/partials/EditViewContents.tpl
index 04d68d61fcd35f4a9da623e7beb365721613699a..2f4a770e3919a812148dc08683bc3f1b5c4db07c 100644
--- a/layouts/v7/modules/Users/partials/EditViewContents.tpl
+++ b/layouts/v7/modules/Users/partials/EditViewContents.tpl
@@ -63,7 +63,7 @@
                              {/if}
                              &nbsp; {if $FIELD_MODEL->isMandatory() eq true} <span class="redColor">*</span> {/if}
                          </td>
-                         <td class="fieldValue" {if $FIELD_MODEL->getFieldDataType() eq 'boolean'} style="width:25%" {/if} {if $FIELD_MODEL->get('uitype') eq '19'} colspan="3" {assign var=COUNTER value=$COUNTER+1} {/if}>
+                         <td  {if in_array($FIELD_MODEL->get('uitype'),array('19')) || $FIELD_MODEL->get('label') eq 'Signature'} class="fieldValue fieldValueWidth80" colspan="3" {assign var=COUNTER value=$COUNTER+1} {else} class="fieldValue" {/if}>
                              {include file=vtemplate_path($FIELD_MODEL->getUITypeModel()->getTemplateName(),$MODULE)}
                          </td>
                      {/if}
diff --git a/layouts/v7/modules/Vtiger/partials/EditViewContents.tpl b/layouts/v7/modules/Vtiger/partials/EditViewContents.tpl
index 14b7308256776efc1d8bfec10aac331d79e842f7..bfc4aea7e7942f4b24feb225167adefa7e4da11b 100644
--- a/layouts/v7/modules/Vtiger/partials/EditViewContents.tpl
+++ b/layouts/v7/modules/Vtiger/partials/EditViewContents.tpl
@@ -96,7 +96,7 @@
 										&nbsp;{if $FIELD_MODEL->isMandatory() eq true} <span class="redColor">*</span> {/if}
 									</td>
 									{if $FIELD_MODEL->get('uitype') neq '83'}
-										<td class="fieldValue" {if $FIELD_MODEL->getFieldDataType() eq 'boolean'} style="width:25%" {/if} {if ($FIELD_MODEL->get('uitype') eq '19' )|| ($FIELD_MODEL->get('uitype') eq '16')} colspan="3" {assign var=COUNTER value=$COUNTER+1} {/if}>
+										<td {if in_array($FIELD_MODEL->get('uitype'),array('19','69')) || $FIELD_NAME eq 'description' ||  (($FIELD_NAME eq 'recurringtype' or $FIELD_NAME eq 'reminder_time')  && in_array({$MODULE},array('Events','Calendar')))} class="fieldValue fieldValueWidth80"  colspan="3" {assign var=COUNTER value=$COUNTER+1} {elseif $FIELD_MODEL->get('uitype') eq '56'} class="fieldValue checkBoxType" {elseif $isReferenceField eq 'reference' or $isReferenceField eq 'multireference' } class="fieldValue p-t-8" {else}class="fieldValue" {/if}>
 											{include file=vtemplate_path($FIELD_MODEL->getUITypeModel()->getTemplateName(),$MODULE)}
 										</td>
 									{/if}
diff --git a/layouts/v7/skins/contact/style.css b/layouts/v7/skins/contact/style.css
index f3bba03bc41c8bc434bbbb3654dcf8e7c4d5975e..24d6b45e90c2c3305d4fc74eb11896dbd3def31b 100644
--- a/layouts/v7/skins/contact/style.css
+++ b/layouts/v7/skins/contact/style.css
@@ -6145,6 +6145,9 @@ div.tooltip-inner {
   width: 100%;
   display: inline-block;
 }
+.fieldValueWidth80{
+    width:80% !important;
+}
 .input-group-addon {
   line-height: 1.5;
   border-width: thin;
diff --git a/layouts/v7/skins/inventory/style.css b/layouts/v7/skins/inventory/style.css
index ea92f4fcd1cdbf80ed32fcb76dd41a2d4ee7e3d6..2f83710f3788bca1760976559cfe93ba9d3b31df 100644
--- a/layouts/v7/skins/inventory/style.css
+++ b/layouts/v7/skins/inventory/style.css
@@ -6145,6 +6145,9 @@ div.tooltip-inner {
   width: 100%;
   display: inline-block;
 }
+.fieldValueWidth80{
+    width:80% !important;
+}
 .input-group-addon {
   line-height: 1.5;
   border-width: thin;
diff --git a/layouts/v7/skins/marketing/style.css b/layouts/v7/skins/marketing/style.css
index 5add96fd9ada200a6c586d74922c155501236062..a871f1d4e58dc310497d6a8a566f542a61ff4957 100644
--- a/layouts/v7/skins/marketing/style.css
+++ b/layouts/v7/skins/marketing/style.css
@@ -6145,6 +6145,9 @@ div.tooltip-inner {
   width: 100%;
   display: inline-block;
 }
+.fieldValueWidth80{
+    width:80% !important;
+}
 .input-group-addon {
   line-height: 1.5;
   border-width: thin;
diff --git a/layouts/v7/skins/marketing_and_sales/style.css b/layouts/v7/skins/marketing_and_sales/style.css
index fd6d72018da567c9a9b533686e4ddc5769cd056d..c6af07c66bdf4f062f3449ecf1cdad2516d61343 100644
--- a/layouts/v7/skins/marketing_and_sales/style.css
+++ b/layouts/v7/skins/marketing_and_sales/style.css
@@ -6139,6 +6139,9 @@ div.tooltip-inner {
   width: 100%;
   display: inline-block;
 }
+.fieldValueWidth80{
+    width:80% !important;
+}
 .input-group-addon {
   line-height: 1.5;
   border-width: thin;
diff --git a/layouts/v7/skins/project/style.css b/layouts/v7/skins/project/style.css
index f64f6842ba1ccb5de39006a9b6426a4dd5479e83..2ff149cc9381956a6ffea29c577d4517dc16be80 100644
--- a/layouts/v7/skins/project/style.css
+++ b/layouts/v7/skins/project/style.css
@@ -6145,6 +6145,9 @@ div.tooltip-inner {
   width: 100%;
   display: inline-block;
 }
+.fieldValueWidth80{
+    width:80% !important;
+}
 .input-group-addon {
   line-height: 1.5;
   border-width: thin;
diff --git a/layouts/v7/skins/sales/style.css b/layouts/v7/skins/sales/style.css
index 42026c685e9893fcf9e63e6608b7a1bd0a64bb5c..3f89fb5ce57c790e3f10fbd625b0c5085efce356 100644
--- a/layouts/v7/skins/sales/style.css
+++ b/layouts/v7/skins/sales/style.css
@@ -6145,6 +6145,9 @@ div.tooltip-inner {
   width: 100%;
   display: inline-block;
 }
+.fieldValueWidth80{
+    width:80% !important;
+}
 .input-group-addon {
   line-height: 1.5;
   border-width: thin;
diff --git a/layouts/v7/skins/support/style.css b/layouts/v7/skins/support/style.css
index c5bb39b231509b7c4aea3de06fbac30ca4b80a25..689338d98c62a57edfb18f34f403dbfca56fa692 100644
--- a/layouts/v7/skins/support/style.css
+++ b/layouts/v7/skins/support/style.css
@@ -6145,6 +6145,9 @@ div.tooltip-inner {
   width: 100%;
   display: inline-block;
 }
+.fieldValueWidth80{
+    width:80% !important;
+}
 .input-group-addon {
   line-height: 1.5;
   border-width: thin;
diff --git a/layouts/v7/skins/tools/style.css b/layouts/v7/skins/tools/style.css
index 749a55cd2b2bb04659a6ca3ec33f33cfd23ea657..5a5f0be6e9a3945e51236c5e15742c504dbad809 100644
--- a/layouts/v7/skins/tools/style.css
+++ b/layouts/v7/skins/tools/style.css
@@ -6145,6 +6145,9 @@ div.tooltip-inner {
   width: 100%;
   display: inline-block;
 }
+.fieldValueWidth80{
+    width:80% !important;
+}
 .input-group-addon {
   line-height: 1.5;
   border-width: thin;
diff --git a/layouts/v7/skins/vtiger/style.less b/layouts/v7/skins/vtiger/style.less
index 8ba953509b7abe0a87013e243656207555cd1b20..f64fe595e1669edd49fc572e60951443a59bf55c 100644
--- a/layouts/v7/skins/vtiger/style.less
+++ b/layouts/v7/skins/vtiger/style.less
@@ -6892,6 +6892,9 @@ div.tooltip-inner{
     width: 100%;
     display: inline-block;
 }
+.fieldValueWidth80{
+    width:80% !important;
+}
 .input-group-addon{
     line-height: 1.5;
     border-width: thin;