Hello all, I'm having a problem with two pages that I used collapsible text markup on. For some reason, the entire right column (with the search bar, ect...) on both pages has been pushed below the content area. The pages are here and here and the section with the collapsible text can be seen here. Help would be much appreciated.
First, you're missing the closing quote on the style attribute.
Second, you have not closed any of these DIVs. You open them but never close them.
<divclass="mw-collapsible mw-collapsed"style="width:100%>
===Item: Camera===
<divclass="mw-collapsible-content">
*"Gotcha!"
*"Hope you're photogenic."
*"Say cheeseburger!"
*"Now!"
*"Say cheese!"
</div><!-- Where is the </div> ? --><divclass="mw-collapsible mw-collapsed"style="width:100%>
Also, the "width:100%" is completely unnecessary which is why it kind of works even though the style attribute is broken. DIVs are block elements, they have a default of width:auto which is the same as width:calc(100% - borderWidth - paddingWidth).