jordanjay29 sure, was just thinking of clickable image with something like this
.photo {
background-image: url('path/image-background.png');
background-size: 1024px;
background-repeat: no-repeat;
background-position: center;
border-radius: 50%;
background-clip: border-box;
transition: background-size 0.2s;
transition-timing-function: cubic-bezier(.07,1.41,.82,1.41);
display: block;
width: 190px;
height: 190px;
text-decoration: none;
cursor: pointer;
overflow: hidden;
text-indent: 100%;
white-space:nowrap;
}
.photo:hover {
background-size: 500px;
}
not sure if that works on flarum, just pondering!
But sure, an extension would be fantastic!