# 删除用户 \> 偏好中的“位置”和“网站”

**URL:** https://meta.discourse.org/t/remove-location-and-web-site-under-user-preference/56055
**Category:** Support
**Created:** [2017年一月20日 02:42 UTC](https://meta.discourse.org/t/remove-location-and-web-site-under-user-preference/56055 "2017-01-20T02:42:21Z")
**Posts on this page:** 1
**Showing post:** 4

<div class="post-metadata">

### Author: ![cpradio](https://sea3.discourse-cdn.com/meta/user_avatar/meta.discourse.org/cpradio/32/4970_2.png) [@cpradio](https://meta.discourse.org/u/cpradio)
#### Post date: [2017年一月20日 03:07 UTC](https://meta.discourse.org/t/remove-location-and-web-site-under-user-preference/56055/4 "2017-01-20T03:07:47Z")

</div>

See

> [@Remove/hide fields](https://meta.discourse.org/t/remove-hide-fields/31254/2):
>
> I tried with css but couldn’t remove the Location… .primary-textual h3 i, .primary-textual a, .primary-textual .bio { display: none; } ‘i’ remove the icon, ‘a’ the website and ‘bio’ the about me, you can add '.primary-textual h3’but it will also remove the rank. Another way would be to remove the user settings .pref-bio, .pref-location, .pref-website { display: none; } Both are only hidding content, and any user (who know how to) could with the developper tools see the data, but it’s li…

You are going to only be interested in the `.pref-location` bit.

```plaintext
.pref-location {
    display: none;
}

```

---

_[View the full topic](https://meta.discourse.org/t/remove-location-and-web-site-under-user-preference/56055)._
