Horizontal Scrollbars appear no matter what I try

Hello folks!



I am trying to use your wonderful component dhtmlxTree in a project. You can see it in action here:



www.maps2go.com.br



It works FINE in Firefox, Chrome and IE8. However in IE7 it shows a horizontal scroll bar no matter what I try.



Here is my code:









Here is my CSS:



#treeboxbox_tree{

overflow: hidden;

min-width:215px;

width:215px;

height:210px;

margin:0px;

padding:0px;

}





Can you help me, please, before I lose my sanity?



IMPORTANT: THIS JUST HAPPENS IN INTERNET EXPLORER 7!!



Thanks!



Carlos


Hello,


try to make the following modification in the css libraries:


-m2g_style_ie.css:


#treeboxbox_tree{

/height: 210px;/

}




- dhtmlxtree.css:


containerTableStyle {


/overflow : auto;/


overflow-y : auto;


overflow-x : hidden;





}

It worked man!!

Thanks a lot!!!