I am trying to add my static block into the Magento one page checkout. More specifically under the Progress section of the page (see attached image). Unfortunately I cannot find anything online nor does my code seem to work. Any ideas?
local.xml
<!-- Checkout Page -->
<checkout_onepage_progress>
<remove name="right"/>
<remove name="left"/>
<block type="checkout/onepage_progress" name="root" output="toHtml" template="checkout/onepage/progress.phtml">
<action method="setInfoTemplate"><method></method><template></template></action>
<block type="cms/block" name="card_scheme_marks"></block>
</block>
</checkout_onepage_progress>
progress.phtml
<div id="payment-card-scheme-marks">
<?php echo $this->getChildHtml('card_scheme_marks') ;?>
</div>