tags:

views:

28

answers:

2

There is a table on the bottom left of this screen which fits within each tab when you click on it.

It works ok in FF & IE but for some reason Safari pushes it out to the right.

http://www.yellostudio.co.uk/tm/#

Any ideas would be very much appreciated?

+1  A: 

Just a suggestion, your HTML doesn't validate, especially with regard to <tr> elements, this could be your problem.

To be fair, even if it isn't the problem getting your HTML valid is generally a good thing :-)

ILMV
missed closing </tr> Thanks didnt notice it
Andy
display:inline-table worked
Andy
A: 

Don't you just need to change this

div.panes div { display:none; width:208px;}

to this

div.panes div { display:none; width:208px; float:left; }
Barry