Reputation: 535
On this website: I've the following problem in Safari: When clicking the 1st time on "KUNDEN" in the navigation, the complete header is invisible. In the dev console I saw, that the content of the header is already loaded - also in the source code. But the content is not appearing until reloading the page or marking everything (STRG+A).
Does anybody have an idea, why this is happening? Could it be a Typo3 bug? look at that screenshot:
I'm using Safari 6.0.5 on Mac 10.8.4.
Upvotes: 0
Views: 169
Reputation: 98738
You forgot to close a div
tag.
Line 72:
<div style="clear:both" </div></header><div id="content">
should be:
<div style="clear:both"></div></header><div id="content">
See all W3C Validation errors:
Upvotes: 1