XF 1.5 How to change avatar size in newsfeed?

Alpha1

Well-known member
I would like to make the newsfeed more compact and orderly. I applied various changes through extra.css
Currently the newsfeed uses a 48 x 48px avatar size. I would like to change this to 36 x 36px
I tried setting this height for .event .avatar, .event .icon but that only reduces div height but not the icon itself.

Is this possible through extra.css or is it needed to use a different avatar icon and do so through template modification?
 
You can try
Code:
.news_feed_page span.img.s {
    width: 36px;
    height: 36px;
}

Or are you talking about the recent-activity (news feed global) page?

If so change it to
Code:
.news_feed_page_global span.img.s {
    width: 36px;
    height: 36px;
}
 
Top Bottom