Avatars on mobile

Started by Gizmo, Feb 09, 2026, 08:19 PM

Previous topic - Next topic

Gizmo

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?
🔥 Forum Flare – A community for forum owners & enthusiasts
⚙️ Forums, admin talk, AI & fun off-topic discussions
🌐 https://forumflare.com

Adminguin

Unfortunately by default SMF doesn't allow for avatars on mobile, but I will try to find a workaround for this if one exists.

fords8

/* 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.
Coming Soon!

Adminguin