I’m testing the new template for a website that I’m working for, and on Safari I have a really weird behaviour where a piece of page (a table) goes far on the right, about 631 pixels, and I don’t have any idea on why this is happening and how to fix it.
Someone can help me? Here the page:
The height of the
<a>tags inside your menu is set to 43px. This is too tall, and the box extends below the menu bar. Because your<li>s arefloat:left, the table “catches” on the last one.One way to solve this is to add
style='clear:both'to the table in question. You could also reduce the height of the<a>s to about 35px.