Quote Originally Posted by Ranch Dog View Post
On my site, it is just a simple line of text with the correct linked information but what needs to be done (or what might I have missed) to get it "boxed" so that it stands out as in your example? I would prefer it to look like the example you gave with the field set.


Modify includes/templates/YOUR_TEMPLATE/templates/tpl_better_together_marketing.php.

Above

echo '<div class="content" id="betterTogetherDiscountPolicy">';

add
echo '<fieldset>';
echo '<legend>' . MODULE_ORDER_TOTAL_BETTER_TOGETHER_TITLE . '</legend>';

then below

echo '</div>';

add

echo '</fieldset>';