XF 1.5 How do I make everyone (temporarily) have the same avatar?

CTXMedia

Well-known member
Is there a quick CSS shortcut I could use to apply the same avatar to all users in thread / post view?

Thanks,
Shaun
 
Try the following with a quadratic image:

Code:
.avatar {position: relative;}
.avatar::before {
content: " ";
position: absolute;
top: 0;
left: 0;
width: 100%;
height: 100%;
display: block;
background: url('YOURIMAGE');
background-size: 100%
}
 
Last edited:
Top Bottom