Hi,
The problem is solved now.
In the style.css i changed the folowing lines:
article, aside, details, figcaption, figure,
footer, header, hgroup, nav, menu, section {
display: block;
}
By
article, aside, details, figcaption, figure,
footer, header, hgroup, section {
display: block;
}
nav, menu{
z-index:9999;
display:inline;
position:relative;
}
The fact to exclude the nav and the menu from the dsiplay: block solved my issue.
Regards