Disable bio, location and profile picture

oh sure, so instead of this:

#user-card .location, // user card
.user-main .user-profile-location, // profile page
.control-group.pref-location {  // user preference
  display: none;
}

you would do

#user-card .location-and-website, // user card
.user-main .location-and-website, // profile page
.control-group.pref-location,  // user preferences
.control-group.pref-website { 
  display: none;
}

We have more info about how to make CSS changes like this in a guide here: How to make CSS changes on your site

3 Likes