Adrian
Adrian

Reputation: 535

Menu invisible in Safari

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:

http://i.imgur.com/hNOqLw0.png

I'm using Safari 6.0.5 on Mac 10.8.4.

Upvotes: 0

Views: 169

Answers (1)

Sparky
Sparky

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:

http://validator.w3.org/check?uri=http%3A%2F%2F99-ideas.de%2Fhallo.html&charset=%28detect+automatically%29&doctype=Inline&group=0

Upvotes: 1

Related Questions