How to add CSS to certain pages? Feed

This will remove the top about section on the users own follow page. If I understand correctly what you want to do. :slightly_smiling_face:

Paste this to mobile css section.

body.user-follow-page {
  .viewing-self {
    .user-main .about {
      display: none;
    }
  }
}
4 Likes