Ozzy47
Well-known member
Okay, I have an addon that allows users to preview threads on the thread list. Addon adds an icon that you click, which opens the preview. Addon is here, https://xenforo.com/community/resources/ozzmodz-thread-preview.5754/
Icon Example:
Preview Example:
Now this works in 2.1 and 2.2 but in 2.2 there are display issues. It moves the last poster avatar to a new line.
This is of course unacceptable. This is the bit of CSS that is causing the layout issues.
It has something to do with,
I just have no clue how to solve it.
Icon Example:
Preview Example:
Now this works in 2.1 and 2.2 but in 2.2 there are display issues. It moves the last poster avatar to a new line.
This is of course unacceptable. This is the bit of CSS that is causing the layout issues.
CSS:
.jpreviewreplace {
display: table-caption !important;
width: auto;
caption-side: bottom;
}
It has something to do with,
display: table-caption !important;
I just have no clue how to solve it.