Magento: Add content block at the end of the structual block "content"

Viewed 13958

I'm trying to add a content block to Magento, which should be visible on every side below the main content. I want to archive this with a custom extension, so I can copy this extension and it workes without touching core design files. My extension includes the following layout update:

<default>
    <reference name="content">
        <block type="mymod/blockname" name="myblockname" after="-" template="mymod/block.phtml"/>
    </reference>
</default>

My problem is, that the attribute after="-" is not working. The block always showes up at the top of the content block. Seems before and after have no consequence. If I move the block to i.e. footer, the attributes before and after are working fine.

How can I place my block at the bottom of block "content"

1 Answers
Related