In nodebb, from default, only users that are "admin" can se the users bookmarks. If the user is a normal user can show only own bookmars but I want that this user can see all users bookmark. Anyone can help me?
Solved I need a little help with avatars remove
-
I use persona theme and I want it make clean without avatars.
But the problem is when I use
.topic .posts .icon .user-icon, .topic .posts .icon img { display: none; }
My nodeBB looks like this.
And I want it to look like this.
What can I do in CSS to make it like this?
-
@mj try this instead
.topic .posts .icon { display: none; } .topic .content { margin-top: 0; margin-left: 0; }
-
@pichalite said in I need a little help with avatars remove:
@mj try this instead
.topic .posts .icon { display: none; } .topic .content { margin-top: 0; margin-left: 0; }
Thank you, it works