Magento – Base – Default – Rwd

appdefaultdesign-packagesmagento-1.9rwd

In my App folder -> /public_html/app/design/frontend, there are 3 folders, base, default, rwd. Can someone give me help on what these folders are for? I know RWD stands for Responsive Web Design, but what are the differences in the three base folders? Default has my template theme, so I would assume, I would edit in there? But besides that, I'm not entirely sure what each folder is supposed to be for?

Thanks for the help

Best Answer

These are the three default packages Magento comes with. Each package can have multiple themes installed inside. If no theme is explicitly set it will use the default theme inside whichever package you are using. I'll do a brief rundown of each package below.

  • Base - This folder has all the template and layout files Magento needs to run. Think of it like the core codepool. You generally don't want to touch the base folder outside of adding in folders from extensions.
  • Default - This is the default theme for Magento. Any files here override the base folder and Magento will use template files from here (if you are using the default theme) where they are available.
  • RWD - This is the alternate default theme which works much the same way Default does but has the feature of being responsive. You'll use one or the other.
Related Topic