XF 1.4 AV size for within a board or New posts

New Joe

Well-known member
I'd like to change the size of the AV when viewing within a board or on New posts.
Tried to find the answer but can't
Any ideas?

Screen Shot 2557-09-27 at 9.35.01 PM.webp
 
Add the below to extra.css. It changes the post avatar and miniMe avatar. Adjust to your liking

Code:
.forum_view .discussionListItem .posterAvatar .avatar img
{
    width: 24px;
    height: 24px;
}

.forum_view .discussionListItem .posterAvatar .miniMe img
{
    width: 16px;
    height: 16px;
}

upload_2014-9-27_11-36-44.webp
 
Add the below to extra.css. It changes the post avatar and miniMe avatar. Adjust to your liking

Code:
.forum_view .discussionListItem .posterAvatar .avatar img
{
    width: 24px;
    height: 24px;
}

.forum_view .discussionListItem .posterAvatar .miniMe img
{
    width: 16px;
    height: 16px;
}

View attachment 85314
That made them bigger on the New Posts tab but actually smaller when viewing within a board

Screen Shot 2557-09-27 at 11.11.16 PM.webp Screen Shot 2557-09-27 at 11.11.43 PM.webp
 
Top Bottom