AI-Forums

AI-Forums HQ => Help & Suggestions => Topic started by: Gizmo on Feb 09, 2026, 08:19 PM

Title: Avatars on mobile
Post by: Gizmo on Feb 09, 2026, 08:19 PM
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?
Title: Re: Avatars on mobile
Post by: Adminguin on Feb 09, 2026, 08:47 PM
Unfortunately by default SMF doesn't allow for avatars on mobile, but I will try to find a workaround for this if one exists.
Title: Re: Avatars on mobile
Post by: fords8 on Feb 10, 2026, 11:45 AM
/* 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.
Title: Re: Avatars on mobile
Post by: Adminguin on Feb 10, 2026, 02:03 PM
Much obliged!