Bonjour,
D'abord voyez avec cette
documentation
comment ajouter du CSS custom.
Ensuite, vous pouvez effectivement mettre le libellé & le dropdown chacun sur sa ligne avec un "display: block;"
table.hikashop_product_characteristics_table td {
display: block;
text-align: center;
}
OU BIEN, vous contraingnez l'espace du libellé avec une dimension (
min-width) mais cela contraindra aussi l'espace disponible pour le dropdown :
table.hikashop_product_characteristics_table tr td:first-child:first-child {
min-width: 60px;
}
En espérant que cela vous aide à réglé votre problème.
Cordialement