Khanh Hoang - Kenn
Kenn is a user experience designer and front end developer who enjoys creating beautiful and usable web and mobile experiences.
The best way to design and modify your Drupal site is with overrides.
If you're not sure how overrides work, read our introduction to Drupal overrides.
One of the most powerful ways to use overrides Drupal is with sub-themes. You might not be surprised to know we have an introduction to sub-themestoo!
However, sometimes you need not just sub-themes, but you also sub-sub-themes. Sounds crazy? Well, sub-sub-themes are what you need to safely override some themes you download from Drupal.org.
Read on to find out about sub-sub-themes:
Here's the idea behind a Drupal sub-sub-theme.
We're going to use Bartik as an example. By default, Bartik sits in the /themes/ folder because it's a core theme.
We're going to create two subthemes in the /sites/all/themes/ folder. We'll call them "bartik_subtheme" and "bartik_sub_subtheme". Each one needs a folder with the name of theme, as in the image below:
The image below shows how the folder structure will look.
As you can see, we've created two files inside each folder:
Each of those two files are essential:
Here's the .info file for the sub-theme:
And here's the .info for the sub-sub-theme. Notice that the only line that is really different is the base theme.
You know you've created the sub-themes correctly when they can be accessed in your Drupal site's admin.
You can now place CSS files and Javascript files inside the sub-theme or sub-theme folders.
Theoretically, thus process could go one for ever. You could create sub-sub-sub-sub-sub-sub-sub themes or worse:
Now let's see how this plays out in the real world. Here's an example of a theme (Adaptivetheme) and a related sub-theme (Corolla):
Why would we want a sub-sub-theme? Because we're not able to modify Corolla without hacking the core files. And, if there's an update to Corolla, we'll lose all our changes.
So, here are the Adaptivetheme and Corolla folder in /sites/all/themes/:
I'm going to create a new folder called /corolla_subtheme/ and create the .info and .css files inside:
That will be enough for Drupal to recognize the sub-sub-theme:
I can now edit the style.css inside /corolla_subtheme/ and all of my changes will override the default Corolla styles.
Now, if I update Adaptivetheme or Corolla, I won't lose any changes.