|
Hello mrbret,
By default all pages in the Magento store is 3 columns format. If you want to have a right column only layout, you will have to go into app/design/frontend/your_package/your_theme/layout/main.xml and change the file accordingly.
To change the search page to your spec, search and change the following:
<catalogsearch_result_index> <reference name="content"> <block type="catalogsearch/result" name="search.result" template="catalogsearch/result.phtml"/> </reference> </catalogsearch_result_index>
to the following:
<catalogsearch_result_index> <reference name="root"> <action method="setTemplate"><template>page/2columns-right.phtml</template></action> </reference> <reference name="content"> <block type="catalogsearch/result" name="search.result" template="catalogsearch/result.phtml"/> </reference> </catalogsearch_result_index>
|