Please or Register to create posts and topics.

disable avatar in last post column in main forum

hello

May i know how to disable avatar in last post column in main forum?. thank you

Put the desired code in your theme’s style.css file.

If you want the space for avatar to remain after it disappears:

div.forum-poster div.forum-poster-avatar {
visibility: hidden;
}

If want the space to disappear also:

div.forum-poster div.forum-poster-avatar {
display: none;
}

 

Asgaros and Biker have reacted to this post.
AsgarosBiker