Indie game storeFree gamesFun gamesHorror games
Game developmentAssetsComics
SalesBundles
Jobs
Tags
(+2)

`Display: none` would do it, yes. And you can find out the class with right click->Inspect Element. The bad news is, all three links have the same class, "link_group for_nil". But you can target the one to your profile with `div.user_links link_group:first`. So in the end:

div.user_links link_group:first { Display: none; }

Beware, I haven't tested the code. Hope this helps!

(2 edits) (+3)

Yeah I noticed they both had the same class, so I was stumped there. Unfortunately the code snippet you provided isn't working, but I figured out a solution though! Thanks!

.link_group:first-child {    display: none; }