# Hide "Web Site" User Field

**URL:** https://meta.discourse.org/t/hide-web-site-user-field/114811
**Category:** Support
**Created:** [April 11, 2019, 11:04pm UTC](https://meta.discourse.org/t/hide-web-site-user-field/114811 "2019-04-11T23:04:15Z")
**Posts on this page:** 4
**Page:** 1

<div class="post-metadata">

### Author: ![Kameron\_Bourgeois](https://avatars.discourse-cdn.com/v4/letter/k/779978/32.png) [@Kameron\_Bourgeois](https://meta.discourse.org/u/Kameron_Bourgeois)
#### Post date: [April 11, 2019, 11:04pm UTC](https://meta.discourse.org/t/hide-web-site-user-field/114811/1 "2019-04-11T23:04:15Z")

</div>

How do I hide the “Web Site” user field from users? Can’t find anything in the settings.

Thanks!

---

<div class="post-metadata">

### Author: ![codinghorror](https://sea3.discourse-cdn.com/meta/user_avatar/meta.discourse.org/codinghorror/32/110067_2.png) [@codinghorror](https://meta.discourse.org/u/codinghorror)
#### Post date: [April 11, 2019, 11:25pm UTC](https://meta.discourse.org/t/hide-web-site-user-field/114811/2 "2019-04-11T23:25:52Z")

</div>

You’ll need to do it with CSS customizations.

---

<div class="post-metadata">

### Author: ![Steven](https://sea3.discourse-cdn.com/meta/user_avatar/meta.discourse.org/steven/32/187890_2.png) [@Steven](https://meta.discourse.org/u/Steven)
#### Post date: [April 11, 2019, 11:38pm UTC](https://meta.discourse.org/t/hide-web-site-user-field/114811/3 "2019-04-11T23:38:19Z")

</div>

Here it is

```css
.control-group .pref-website {
    display: none;
}

```

If needed, here is how to hide it in the user card and the user profile

```css
#user-card .third-row .location-and-website .website-name {
    display: none;
}

.user-main .about .details .primary .primary-textual .location-and-website .user-profile-website {
    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: [May 11, 2019, 11:40pm UTC](https://meta.discourse.org/t/hide-web-site-user-field/114811/4 "2019-05-11T23:40:58Z")

</div>

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