# Hide the "Interface" section

**URL:** https://meta.discourse.org/t/hide-the-interface-section/252034
**Category:** Development
**Created:** [January 17, 2023, 3:14pm UTC](https://meta.discourse.org/t/hide-the-interface-section/252034 "2023-01-17T15:14:49Z")
**Posts on this page:** 7
**Page:** 1

<div class="post-metadata">

### Author: ![NoamH](https://sea3.discourse-cdn.com/meta/user_avatar/meta.discourse.org/noamh/32/289521_2.png) [@NoamH](https://meta.discourse.org/u/NoamH)
#### Post date: [January 17, 2023, 3:14pm UTC](https://meta.discourse.org/t/hide-the-interface-section/252034/1 "2023-01-17T15:14:50Z")

</div>

Is it possible to remove/hide the “Interface” section for a specific custom group?

 ![image](https://global.discourse-cdn.com/meta/original/4X/2/7/0/270ac664e2a200745ae316a10eac9fbdc2a9af4b.png)

---

<div class="post-metadata">

### Author: ![Jagster](https://sea3.discourse-cdn.com/meta/user_avatar/meta.discourse.org/jagster/32/192154_2.png) [@Jagster](https://meta.discourse.org/u/Jagster)
#### Post date: [January 17, 2023, 3:59pm UTC](https://meta.discourse.org/t/hide-the-interface-section/252034/2 "2023-01-17T15:59:31Z")

</div>

I’m sure there is some CSS-trick, but I don’t know how to do it — sorry.

Curiosity kills the cat, but why would you like to cripple UX to some users?

---

<div class="post-metadata">

### Author: ![darkpixlz](https://sea3.discourse-cdn.com/meta/user_avatar/meta.discourse.org/darkpixlz/32/549896_2.png) [@darkpixlz](https://meta.discourse.org/u/darkpixlz)
#### Post date: [January 17, 2023, 4:03pm UTC](https://meta.discourse.org/t/hide-the-interface-section/252034/3 "2023-01-17T16:03:56Z")

</div>

You can use this component to add CSS classes:

> [@CSS Classes for Current User's Groups](https://meta.discourse.org/t/css-classes-for-current-users-groups/226068):
>
> discourse2Summary CSS Classes for Current User’s Groups adds the groups that a member is a part of as CSS classes on the \<body\> tag.eyeglassesPreview [Preview on theme-creator.discourse.org](https://discourse.theme-creator.io/theme/Johani/user-groups-css-classes)hammer_and_wrenchRepository Link [https://github.com/discourse/discourse-groups-css-classes-in-body](https://github.com/discourse/discourse-groups-css-classes-in-body)open_bookNew to Discourse Themes? [Beginner’s guide to using Discourse Themes](https://meta.discourse.org/t/beginners-guide-to-using-discourse-themes/91966) Install this theme component Before: [image] After: [image] Discourse only adds the current us…

I’m sadly not around my computer to get the CSS tags, but it would probably be something like this

```SCSS
.group-GROUPNAME {
    .INTERFACE-BUTTON {
        display:none;
    }
}

```

---

<div class="post-metadata">

### Author: ![NoamH](https://sea3.discourse-cdn.com/meta/user_avatar/meta.discourse.org/noamh/32/289521_2.png) [@NoamH](https://meta.discourse.org/u/NoamH)
#### Post date: [January 17, 2023, 4:10pm UTC](https://meta.discourse.org/t/hide-the-interface-section/252034/4 "2023-01-17T16:10:05Z")

</div>

Thank you I will try that.

---

<div class="post-metadata">

### Author: ![darkpixlz](https://sea3.discourse-cdn.com/meta/user_avatar/meta.discourse.org/darkpixlz/32/549896_2.png) [@darkpixlz](https://meta.discourse.org/u/darkpixlz)
#### Post date: [January 17, 2023, 9:40pm UTC](https://meta.discourse.org/t/hide-the-interface-section/252034/5 "2023-01-17T21:40:34Z")

</div>

Hey, did this go alright for you? If you need any help now I’m here.

---

<div class="post-metadata">

### Author: ![NoamH](https://sea3.discourse-cdn.com/meta/user_avatar/meta.discourse.org/noamh/32/289521_2.png) [@NoamH](https://meta.discourse.org/u/NoamH)
#### Post date: [January 18, 2023, 7:17am UTC](https://meta.discourse.org/t/hide-the-interface-section/252034/6 "2023-01-18T07:17:51Z")

</div>

Yes, this one worked for me.  
Thanks!

```plaintext
.group-XXXX {
    .nav-interface {
        display: none;
    }
}

```

---

<div class="post-metadata">

### Author: ![system](https://sea3.discourse-cdn.com/meta/user_avatar/meta.discourse.org/system/32/443519_2.png) [@system](https://meta.discourse.org/u/system)
#### Post date: [February 17, 2023, 7:18am UTC](https://meta.discourse.org/t/hide-the-interface-section/252034/7 "2023-02-17T07:18:06Z")

</div>

This topic was automatically closed 30 days after the last reply. New replies are no longer allowed.
