views:

425

answers:

1

How i change the position of module of magento cart???

+1  A: 

You'll want to get your terminology straight when working with Magento. It's a complicated system and being able to keep it's various parts straight is important. "Modules" in Magento refer to independently or interconnected code packages that you can apply to change or enhance the behavior of the system. When you say "module", I"m going to assume you want to change the HTML layout of the page.

The HTML/Themes for the Magento application are kept in

app/design/frontend/default/default

You can edit these files directly, or copy the second default folder to create your own theme (which you'd then set in System -> Configuration -> Design -> Themes -> Default. By editing the phtml files in this directory you can change the layout of your Magento store.

Alan Storm