Table not sitting within the a div correctly
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?
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 :-)
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; }
精彩评论