[TH] Last Post Avatar [Deleted]

@maszd @ToyBoxOrphan You'll notice that this is actually a bug in the default XenForo theme. The sidebar has the same issue as well. I do not have this fixed yet, but plan to fix it before the next release.
 
Hello
When activating Nodes, Avatars do not show up in mobile responsive mode here.
That is by design, in the UI.X framework. On default style it'll still show up I think but not sure. Its probably best not to show avatar on mobile, as there just isn't enough room.

If you really want to I think its just being hidden with CSS. Adding this to your CSS should force it:

CSS:
@media (max-width: 650px)
    .structItem .lastPostAv {
        display: block;
        float: left;
        order: 1;
    }
    .structItem .lastPostAv .avatar.avatar--xs {
        width: 18px;
        height: 18px;
        font-size: 10px;
    }
}

Which results in:

1528422055729.webp
 
That's just because the "Yesterday at 1:50 PM" has wrapped to a new line, try adding this to your EXTRA.less:

Code:
.node-extra { width: 250px; }
This doesn't solve that issue which was reported 1 post before this quote for the default style.
 
This doesn't solve that issue which was reported 1 post before this quote for the default style.
If you want post your URL Ill give you a quickfix. The add-on updated recently if you're on latest.
 
  • Like
Reactions: sbj
I just installed this and it gets cut off for me too.
 

Attachments

  • cutoff.webp
    cutoff.webp
    7.1 KB · Views: 10
Top Bottom