Remove notification bell/user profile icon from app

Hey all, I was looking to remove the notification bell & user profile icon from an app of mine and found that this CSS works:

  • Notification bell
.raf-icon-badge {
  display:none;
}
  • User profile icon
.stk-user-menu {
  display:none;
}
3 Likes

Thanks for sharing @jasperflour!