
Originally Posted by
gaurav10feb
you might need to look into included>>functions>>functions.php
and look for "zen_get_products_quantity_min_units_display" function.
change this
"if ($check_units != 1) {
$the_min_units .= ($the_min_units ? ' ' : '' ) . PRODUCTS_QUANTITY_UNIT_TEXT_LISTING . ' ' . $check_units;
}"
to this
if ($check_units != 1) {
$the_min_units .= ($the_min_units ? ' ' : '' ) . PRODUCTS_QUANTITY_UNIT_TEXT_LISTING . '<br/>' . $check_units;
}
Explanation: this function is adding space between min qty and product qty by changing   to <br/> it will create a new line for product qty
I Hope that's what you are trying to achieve.