# Different themes per category?

**URL:** https://meta.discourse.org/t/different-themes-per-category/64573
**Category:** Support
**Created:** [June 15, 2017, 8:06pm UTC](https://meta.discourse.org/t/different-themes-per-category/64573 "2017-06-15T20:06:59Z")
**Posts on this page:** 10
**Page:** 1

<div class="post-metadata">

### Author: ![downey](https://sea3.discourse-cdn.com/meta/user_avatar/meta.discourse.org/downey/32/166878_2.png) [@downey](https://meta.discourse.org/u/downey)
#### Post date: [June 15, 2017, 8:06pm UTC](https://meta.discourse.org/t/different-themes-per-category/64573/1 "2017-06-15T20:06:59Z")

</div>

Forgive the newbie question – I am not yet well versed in the theme system.

**Is there any way to possibly use multiple themes for the same installation?** In other words, for example, have one theme in use for a specific category and another theme be default site-wide/elsewhere?

---

<div class="post-metadata">

### Author: ![Falco](https://sea3.discourse-cdn.com/meta/user_avatar/meta.discourse.org/falco/32/179432_2.png) [@Falco](https://meta.discourse.org/u/Falco)
#### Post date: [June 15, 2017, 9:01pm UTC](https://meta.discourse.org/t/different-themes-per-category/64573/2 "2017-06-15T21:01:01Z")

</div>

Not themes, but different styles you can. There is a class with the category name on the body.

---

<div class="post-metadata">

### Author: ![downey](https://sea3.discourse-cdn.com/meta/user_avatar/meta.discourse.org/downey/32/166878_2.png) [@downey](https://meta.discourse.org/u/downey)
#### Post date: [June 15, 2017, 9:02pm UTC](https://meta.discourse.org/t/different-themes-per-category/64573/3 "2017-06-15T21:02:23Z")

</div>

> [@Falco](#):
>
> There is a class with the category name on the body.

Ah, OK. I’ve done that previously, or something close to it, so am familiar with the idea. Just wondered if there might be a faster way to adopt different styling between categories. Thanks! 🙂

---

<div class="post-metadata">

### Author: ![Falco](https://sea3.discourse-cdn.com/meta/user_avatar/meta.discourse.org/falco/32/179432_2.png) [@Falco](https://meta.discourse.org/u/Falco)
#### Post date: [June 15, 2017, 9:04pm UTC](https://meta.discourse.org/t/different-themes-per-category/64573/4 "2017-06-15T21:04:13Z")

</div>

With SASS scoped selectors it’s pretty easy:

```css

// put main theme here

body.category-support {
 // paste another theme here
}

```

---

<div class="post-metadata">

### Author: ![PackElend](https://sea3.discourse-cdn.com/meta/user_avatar/meta.discourse.org/packelend/32/95294_2.png) [@PackElend](https://meta.discourse.org/u/PackElend)
#### Post date: [August 9, 2019, 9:31pm UTC](https://meta.discourse.org/t/different-themes-per-category/64573/5 "2019-08-09T21:31:56Z")

</div>

means that I can use different theme components too  
e.g. standard for everyone, kanban if you switch to “task”

---

<div class="post-metadata">

### Author: ![PackElend](https://sea3.discourse-cdn.com/meta/user_avatar/meta.discourse.org/packelend/32/95294_2.png) [@PackElend](https://meta.discourse.org/u/PackElend)
#### Post date: [August 18, 2019, 5:51pm UTC](https://meta.discourse.org/t/different-themes-per-category/64573/6 "2019-08-18T17:51:21Z")

</div>

> [@Falco](#):
>
> There is a class with the category name on the body.

> [@Falco](#):
>
> With SASS scoped selectors it’s pretty easy

> [@downey](#):
>
> Ah, OK. I’ve done that previously,

can you share a bit more detailed tutorial on how to do that, I would like to do the same but cannot follow you

---

<div class="post-metadata">

### Author: ![PackElend](https://sea3.discourse-cdn.com/meta/user_avatar/meta.discourse.org/packelend/32/95294_2.png) [@PackElend](https://meta.discourse.org/u/PackElend)
#### Post date: [August 22, 2019, 8:56pm UTC](https://meta.discourse.org/t/different-themes-per-category/64573/7 "2019-08-22T20:56:15Z")

</div>

@Falco and @downey would you mind to grant me some insight?

Moreover, can I add an entry in the hamburger menu what switches to predefined filter and activates the [Kanban Board](https://meta.discourse.org/t/kanban-board-theme-component/118164) (or any other of the those lsited below)  
In addition, is shall make visible

- [Favorites - select your favorite categories](https://meta.discourse.org/t/favorites-select-your-favorite-categories/81959)
- [iscourse Assign](https://meta.discourse.org/t/discourse-assign/58044)
- [agenda](https://meta.discourse.org/t/events-plugin/69776)
- [tickets](https://meta.discourse.org/t/tickets-plugin/97914)

in the navigation bar.

---

<div class="post-metadata">

### Author: ![downey](https://sea3.discourse-cdn.com/meta/user_avatar/meta.discourse.org/downey/32/166878_2.png) [@downey](https://meta.discourse.org/u/downey)
#### Post date: [September 30, 2019, 8:30pm UTC](https://meta.discourse.org/t/different-themes-per-category/64573/8 "2019-09-30T20:30:32Z")

</div>

> [@PackElend](#):
>
> I would like to do the same but cannot follow you

That’s most likely because this support question is 2.5 years old. 😄

If you are having trouble with installing or switching themes, probably best to open a new #Support topic with your specific challenges.

---

<div class="post-metadata">

### Author: ![PackElend](https://sea3.discourse-cdn.com/meta/user_avatar/meta.discourse.org/packelend/32/95294_2.png) [@PackElend](https://meta.discourse.org/u/PackElend)
#### Post date: [October 1, 2019, 7:06pm UTC](https://meta.discourse.org/t/different-themes-per-category/64573/10 "2019-10-01T19:06:10Z")

</div>

> [@downey](#):
>
> probably best to open a new #Support topic with your specific challenges.

done but

> [@Falco](#):
>
> Not themes, but different styles you can. There is a class with the category name on the body.

> [@downey](#):
>
> Ah, OK. I’ve done that previously, or something close to it, so am familiar with the idea. Just wondered if there might be a faster way to adopt different styling between categories. Thanks!

> [@Falco](#):
>
> With SASS scoped selectors it’s pretty easy:
> 
> ```plaintext
> // put main theme here
> 
> body.category-support {
> // paste another theme here
> }
> 
> ```

was discussed here so you might be the one who is be able to explained it in bit more detail

---

<div class="post-metadata">

### Author: ![JammyDodger](https://sea3.discourse-cdn.com/meta/user_avatar/meta.discourse.org/jammydodger/32/254611_2.png) [@JammyDodger](https://meta.discourse.org/u/JammyDodger)
#### Post date: [June 8, 2024, 12:37pm UTC](https://meta.discourse.org/t/different-themes-per-category/64573/11 "2024-06-08T12:37:10Z")

</div>

This topic was automatically closed after 2549 days. New replies are no longer allowed.
