I've found out the cause of the problem, the background position was set as follows, in main.css, line 741:
Code:
.menu-dialog .title-bar {
background: #FFFFFF url(images/2column/menu_bgtop.gif) no-repeat center center;
border: 0px none;
width: 186px;
height: 30px;
padding-top: 6px;
line-height:36px;
overflow: hidden;
}
It should have been
Code:
.menu-dialog .title-bar {
background: #FFFFFF url(images/2column/menu_bgtop.gif) no-repeat top center;
Works perfectly now - so if you have similar problems with any background images, always try changing the positioning.