# Disabling Profile User Fields

**URL:** https://meta.discourse.org/t/disabling-profile-user-fields/118237
**Category:** Feature
**Created:** [May 20, 2019, 6:24pm UTC](https://meta.discourse.org/t/disabling-profile-user-fields/118237 "2019-05-20T18:24:39Z")
**Posts on this page:** 1
**Showing post:** 2

<div class="post-metadata">

### Author: ![pfaffman](https://sea3.discourse-cdn.com/meta/user_avatar/meta.discourse.org/pfaffman/32/120154_2.png) [@pfaffman](https://meta.discourse.org/u/pfaffman)
#### Post date: [May 20, 2019, 6:35pm UTC](https://meta.discourse.org/t/disabling-profile-user-fields/118237/2 "2019-05-20T18:35:10Z")

</div>

You can do it with CSS. It’s a bit fussy because you have to do it with `nth-of-type` targeting to hide/display them (at least that was the solution that I found).

Here. Something like this:

```plaintext
.create-account .user-fields .user-field {
    display: none;
    
    &:nth-of-type(10){
        display: block;
    }
        &:nth-of-type(8){
        display: block;
    }
        &:nth-of-type(13){
        display: block;
    }

    
}

```

---

_[View the full topic](https://meta.discourse.org/t/disabling-profile-user-fields/118237)._
