Share what you are working on and using!

Just sharing a trick that I discovered, to disable the Stats link from the drop-down menu when logged in.

/* Hide Stats link */
  nav#manage ul a[href="/me/c/<UserName>/stats"] {
  pointer-events: none;
  color: #fff;
  background: #fff;
}
1 Like