
Originally Posted by
countrycharm
The screen shot you showed is great.
Look at this screen shot of the link after shipping Method. It is not centered inside the yellow box.
open includes/languages/english/extra_definitions/YOUR_TEMPLATE/order_steps_defines.php
replace the entire contents of the file with the following:
PHP Code:
<?php
if ($current_page_base == 'checkout_payment' || $current_page_base == 'checkout_confirmation') {
define('TEXT_ORDER_STEPS_1', '<a href="' . zen_href_link(FILENAME_CHECKOUT_SHIPPING, '', 'SSL') . '">Shipping Method</a>');
} else {
define('TEXT_ORDER_STEPS_1', 'Shipping Method');
}
if ($current_page_base == 'checkout_confirmation') {
define('TEXT_ORDER_STEPS_2', '<a href="' . zen_href_link(FILENAME_CHECKOUT_PAYMENT, '', 'SSL') . '">Payment Method</a>');
}else{
define('TEXT_ORDER_STEPS_2', 'Payment Method');
}
define('TEXT_ORDER_STEPS_3', 'Confirm Order');
define('TEXT_ORDER_STEPS_4', 'Completed Order ');
define('TEXT_ORDER_STEPS_INFO', '<p>There are four steps in this checkout process.</p>');
define('CURRENT_TEXT_ORDER_STEPS', 'You are currently entering your ');
define('CURRENT_TEXT_ORDER_STEPS_3', 'You are currently going to review the details and ');
define('CURRENT_TEXT_ORDER_STEPS_4', 'You have ');
define('DONE_TEXT_ORDER_STEPS', 'You have already entered your ');
define('DONE_TEXT_ORDER_STEPS_3', 'You have reviewed the details to ');
define('NEXT_TEXT_ORDER_STEPS_2', 'In the second step, you will enter your ');
define('NEXT_TEXT_ORDER_STEPS_3', 'In the third step, you will review the details and ');
define('NEXT_TEXT_ORDER_STEPS_4', 'In the final step, you will ');
define('ORDER_REVIEW', '<h4 class="confirm">PLEASE REVIEW & CONFIRM YOUR ORDER!!</h4>');
//EOF