Changing the page layout of a particular category
You can change the page layout for each individual category by following these steps:
1. Go to Catalog -> Manage Categories 2. Select any category 3. Click the 'Custom Design' tab 4. Select your desired page layout from 'Page Layout' selectbox 5. Save Category and you are done!
Change category page from local.xml file:
1. Open layout/local.xml file 2. Find the node 'catalog_category_default' and add <catalog_category_default> <reference name="root"> <action method="setTemplate"><template>page/2columns-right.phtml</template></action> </reference> </catalog_category_default>
Another method:
1. Open layout/page.xml file 2. Under the 'default' node, you will find the following code <block type="page/html" name="root" output="toHtml" template="page/2columns-left.phtml">
The above line has the 2columns-left layout set . You can change it to the desired option, for example 2columns-right , 3columns , etc.
PS: If you use multi-level navigation, you need to use the <catalog_category_layered> node to change the layout.
Slimshadddyyy
source share