Fixed PanelScroller overflow bug

CyberAP

Well-known member
If the content inside the notice panel exceeds the maximum width it does cover another notice.
It can't be seen on the default style because 'the big one notice' is hidden by a background of another notice. But if we disable that background the bug is seen clearly.

To solve this problem we should hide the overflown content with this simple code:

.PanelScroller .panel { overflow: hidden; }
 
Top Bottom