Magento – New Magento theme wont load theme styles

cssmagento-1.8theme

I have installed a new Magento install on my local machine and have given it a new theme. I updated the theme in the Config section in the admin, but the CSS for the theme is not being loaded. Instead, the css files in skin/frontend/base are being loaded. How can I change the folder from base to ?

The path to my theme is skin/frontend/. The only thing I have changed in the admin has been at System -> Conficuration -> Design and under the Package dropdown, I changed default to

Best Answer

You seem to be talking about two different things. In Magento, there are

a) packages
b) themes

The package defines the first folder and the theme the underlying "child" folder. An example:

app/design/frontend/PACKAGE/THEME

Furthermore, you can specify a separate folder for your skin via the backend settings, but it will be in the same package that you configured.

So, say you put package = mycompany and theme = mytheme and skin = myskin,

then your paths will be:

app/design/frontend/mycompany/mytheme/template -> for phtml files
app/design/frontend/mycompany/mytheme/layout   -> for layout xml files, e.g. local.xml
skin/frontend/mycompany/myskin                 -> for skin files like css, js, images
Related Topic