I am new in magento. I want to display a text present in abc.phtml in left column. I displayed it in center using the given below code:
<default>
<block type="page/html" name="catalog.topnav" template="page/html/abc.phtml"/>
</default>
I wrote the above code on page.xml.
I just wrote simple echo code in abc.phtml
<?php
echo "Welcome to Magento";
?>