Quote Originally Posted by dw08gm View Post
Further to my above post (#348) I solved the excess space issue by creating a css class="discountpolicy1 h4" with {margin-bottom:0;} to negate the retained class="h4" with {margin-bottom:1em;}.
Further to above post (#350)
For the discounts table to appear on promo page as per css, you can edit includes\templates\lavender\templates\tpl_quantitydiscounts_promo_default.php (lines 25-42)

<br class="clearBoth" />
<?php
if (count($marketing_data) > 0) {
echo '<div class="content" id="discountPolicy1">' . "\n";
echo '<h4>' . STORE_POLICY . '</h4>';
echo '<ul>' . "\n";
for ($i=0, $n=count($marketing_data); $i<$n; $i++) {
echo '<li>'.$marketing_data[$i] . "</li>" . "\n";
}
echo '</ul>' . "\n";
echo '<br /></div>';
echo '<br class="clearBoth" />';
} else {
echo '<div class="content" id="discountPolicy1">' . "\n";
echo '<p>' . NO_QUANTITYDISCOUNTS_DISCOUNTS . '</p>';
echo '</div>' . "\n";
}
?>

It is a pity this kind of information/instruction is not easily located within ZC or with the addons, where it could save novices like myself countless hours of hapless searching and a good deal of frustration.