Fixed Found redundant CSS rule in page_nav.css

Matt C.

Well-known member
This is in XenForo 1.5.14. In the CSS class ".PageNav .scrollable .items", I found two "display: block" rules.

Code:
.PageNav .scrollable .items
{
       display: block;
       width: 20000em; /* contains scrolling items, should be huge */
       position: absolute;
       display: block;
}

You can see it on XenForo.com through the element inspector.
Screenshot 2017-06-18 at 3.36.11 AM.webp
 
Last edited:
Top Bottom