Bug overview description.
What part(s) of the site page(s) are affected?
Some wiki pages, but it's unclear as of yet which ones.
What is the expected behavior?
As with every other wiki page, the list of recent posts should stay strictly below the article and not reflow below the sidebar.
What actual behavior is given instead?
See picture
Time of incident (if applicable).
May 12 2018, at around 12AM GMT
Can you reproduce the bug every time?
Yes, but not on all pages. So far, I've only found spraypaint and monorchid to show that issue. Meanwhile, experimentation has no issue.
What steps did you take to replicate this bug?
I initially noticed this bug on monoorchid, and I suspected that this might be due to the lack of a wiki entry, but other empty tags don't have that issue. I'm not entirely sure which pages have that problem right now, but it seems to be related to having a low enough tag count to have all tagged images fit on the screen, and possibly not having a wiki entry, but even then, I can't figure out how to reliably figure out which pages will have the issue or not.
The problem is actually that the Recent Posts section is rendered outside of the wiki article section.
HTML on a correct page
<div id="wiki-body"> <div style="margin-bottom: 1em;"> <p>This page does not exist. <a href="/wiki/new?title=marsminer">Click here</a> to create it.</p> </div> <div style="margin-bottom: 1em;"> <h4>Recent Posts</h4><div style="margin: 1em 0;"><div>
HTML on an incorrect page
<div id="wiki-body"> <div style="margin-bottom: 1em;"> <p>This page does not exist. <a href="/wiki/new?title=monorchid">Click here</a> to create it.</p></div> </div> <div style="margin-bottom: 1em;"> <h4>Recent Posts</h4><div style="margin: 1em 0;"><div>
Notice the extra closing </div> in incorrect version, which causes the issue.
Updated by darryus