Well you got it half right...
There are 2 ways to do it
1. the easy (improper) way
2. the more detailed (proper) way
The Easy way just requires you to HACK in a line of html, encase in a DIV
The proper way requires you do this
Create this line, then put it into
includes/templates/template_default/templates/tpl_checkout_shipping_default
in an appropriate place (ie: where you want it to appear in the page layout)
PHP Code:
<div id="checkoutShippingDisclaimer" class="important"><?php echo TEXT_SHIPPING_DISCLAIMER; ?></div>
----------------------------------------------------------------
Then create this line:
PHP Code:
define('TEXT_SHIPPING_DISCLAIMER', 'Your disclaimer text here.');
And insert it into
languages/english/checkout_shipping.php
-----------------------------------------------------------------
Strictky speaking, as these are now EDITED files, you should not overwrite the CORE files, but rather save these to your CUSTOM folders.
------------------------------------------------------------------
As you have given this new div an ID...
checkoutShippingDisclaimer
You can create styles for it in the stylesheet
Code:
#checkoutShippingDisclaimer {color: #FFF000}