diff --git a/htdocs/commande/card.php b/htdocs/commande/card.php
index b6e16a22a9e..4eca459300a 100644
--- a/htdocs/commande/card.php
+++ b/htdocs/commande/card.php
@@ -1632,8 +1632,8 @@ if ($action == 'create' && $usercancreate) {
if ($socid > 0) {
// Contacts (ask contact only if thirdparty already defined).
print "
| ".$langs->trans("DefaultContact").' | ';
- print img_picto('', 'contact');
- print $form->selectcontacts($soc->id, $contactid, 'contactid', 1, $srccontactslist, '', 1);
+ print img_picto('', 'contact', 'class="pictofixedwidth"');
+ print $form->selectcontacts($soc->id, $contactid, 'contactid', 1, $srccontactslist, '', 1, 'maxwidth200 widthcentpercentminusx');
print ' |
';
// Ligne info remises tiers
@@ -1670,8 +1670,8 @@ if ($action == 'create' && $usercancreate) {
// Terms of the settlement
print '| '.$langs->trans('PaymentConditionsShort').' | ';
- print img_picto('', 'paiment');
- $form->select_conditions_paiements($cond_reglement_id, 'cond_reglement_id', - 1, 1);
+ print img_picto('', 'payment', 'class="pictofixedwidth"');
+ $form->select_conditions_paiements($cond_reglement_id, 'cond_reglement_id', - 1, 1, 0, 'maxwidth200 widthcentpercentminusx');
print ' |
';
// Payment mode
@@ -1690,7 +1690,7 @@ if ($action == 'create' && $usercancreate) {
// Shipping Method
if (!empty($conf->expedition->enabled)) {
print '| '.$langs->trans('SendingMethod').' | ';
- print img_picto('', 'object_dollyrevert', 'class="pictofixedwidth"');
+ print img_picto('', 'object_dolly', 'class="pictofixedwidth"');
print $form->selectShippingMethod($shipping_method_id, 'shipping_method_id', '', 1, '', 0, 'maxwidth200 widthcentpercentminusx');
print ' |
';
}