Grid doesn't display in Safari

Please look at the following page:



modelscope.com/browse_cams.php



In FireFox and IE, the grid displays fine. However, in Safari, the row is not displayed.



Can you help me fix this?

Because of used styling ( global css rule which affects elements in grid ) width of container differs in FF and Safari - as result unwanted scroller occurs.
You can try to add next command to the grid init
grid.enableAutoWidth(true)

or fully disable h-scroll by
grid.objBox.style.overflowX=“hidden”

The second method you suggested worked. Thanks!