I am not able to disable flair or user titles on mobile

Some reason its not working when I add CSS to the mobile area, not sure if I am doing it right.

.topic .post-avatar .avatar-flair,
.topic .avatar-flair {
  display: none !important;
}

does this work if you put it in common css tab?


@include viewport.until(md) {
  
  .topic-avatar .avatar-flair {
      display: none;
  }
}
4 likes

did you read this topic yet?

Did you check the browser inspector to see if the CSS applies and if it’s potentially being overruled? Always useful :slight_smile:

2 likes