Conversation.js structure

Would anyone know why the avatars for replies on my site are showing on their own line? I don’t think I’m doing anything custom with them. I’m using the suggested CSS from the help document.

That starter CSS might have to be tweaked for some themes. In your case, adding display: inline; to the .microblog_avatar ruleset should do it. Like this:

.microblog_avatar {
  border-radius: 10px;
  display: inline; /* Add this line to the ruleset. */
  vertical-align: top;
}
1 Like

Ah, so simple. That indeed did the trick. Thanks again!