Reputation: 9
I want a 3-Column-Layout in my Magento 1.9 RWD Theme, but it doesn't work if I change it in the backend. I'm still having a 2-Column-Layout.
Is a 3-Column-Layout in the RWD Theme even possible?
Is there a solution to this? Changing the catalog.xml directly?
Upvotes: 0
Views: 2102
Reputation: 1593
Ok first of all check your chache... it supports the 3 column lay out as i have done it my self.
just enter the below code in xml where you want to edit:
<[module]_[controller]_[function]>
<reference name="root">
<action method="setTemplate"><template>page/2columns-left.phtml</template></action>
</reference>
</[module]_[controller]_[function]>
change [module][controller][function] to your url which you want to enter the 3 column layout.
Hope this helps you :)
Upvotes: 1