Vincent
Well-known member
EDIT: After looking it trough, this bug appears to be introduced with Chrome v21.
I'm guessing this has something to do with the introduction of the big sprite image
The Sub-Forums Arrow doesn't fully show.

To fix it, change in xenforo_popup.css
to
I'm guessing this has something to do with the introduction of the big sprite image

The Sub-Forums Arrow doesn't fully show.

To fix it, change in xenforo_popup.css
Code:
.Popup .arrowWidget
{
/* circle-arrow-down */
@property "popupArrowClosed";
background: transparent url('@imagePath/xenforo/xenforo-ui-sprite.png') no-repeat -32px 0;
margin-top: -2px;
margin-left: 2px;
display: inline-block;
*margin-top: 0;
vertical-align: middle;
width: 16px;
height: 14px;
@property "/popupArrowClosed";
}
to
Code:
.Popup .arrowWidget
{
/* circle-arrow-down */
@property "popupArrowClosed";
background: transparent url('@imagePath/xenforo/xenforo-ui-sprite.png') no-repeat -32px 0;
margin-top: 0px;
margin-left: 2px;
display: inline-block;
*margin-top: 0;
vertical-align: middle;
width: 16px;
height: 14px;
@property "/popupArrowClosed";
}