View Single Post
  #2  
Old 08-19-2010, 12:00 PM
 
Sisom Sisom is offline
 

eXpert
  
Join Date: Sep 2006
Posts: 310
 

Default Re: 'Categories' box text too high in IE8

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.
__________________
X-Cart Gold Version 4.3.2
Reply With Quote