PDA

View Full Version : Remove/disable avatars in activity stream?


S_E_A
07-17-2014, 08:11 PM
Hi,

The use of avatars is disabled on my forum.

I would like to disable/remove the default avatar image in the activity stream.

Is this possible?

Thank you.

tbworld
07-17-2014, 10:14 PM
This will not disable the avatars, nor will it prohibit the data from the source files, but it is an easy solution.

Add to the bottom of your additional.css

li.activitybit .avatar {
display: none;
}

li.activitybit .content.hasavatar {
margin-left: 2px;
}
:)

S_E_A
07-18-2014, 09:30 AM
Great stuff, tbworld. Thank you. :)