So on mobile it doesn't show avatars in posts. Strangely it shows signatures though.
Is there a way to display avatars on mobile in posts?
Unfortunately by default SMF doesn't allow for avatars on mobile, but I will try to find a workaround for this if one exists.
/* Force avatars to show on mobile devices */
@media screen and (max-width: 720px) {
.poster .avatar {
display: block !important;
}
/* Optional: Resize them so they don't take up too much space */
.poster .avatar img {
width: 50px !important;
height: auto !important;
}
}
Edit Themes/default/css/index.css and add the code above to the very bottom of the file.
Clear Cache
Works on the default theme.
Much obliged!