XF.com: HTML/CSS Problem on Help page "Resource Standards"?

nocte

Well-known member
As there's not "site feedback" sub-forum, I post this here..

When you visit the Help page "Resource Standards":
-> then the Conversations overlay does not look fine. There's a HTML/CSS problem with:
CSS:
    .template-help_page ol > li
    {
        margin-bottom: 8px;
    }

Replace it with:
CSS:
    .template-help_page .p-body-pageContent ol > li
    {
        margin-bottom: 8px;
    }
(or something similar)
 
Top Bottom