I’m sorry, but I don’t see the issue you’re describing on your page. Does this happen for you on all browsers you’ve tried? Different computers?
Hi,
Sorry for the late replay but I’ve fix it, maybe you have a better solution for what I did.
I had to add:
@media screen and (min-width: 783px){
.main-navigation {
height: 48px; important!
}
}
Otherwise the menu height cover the contact of the page.
Regards Tamir.
It might have something to do with this part of your code, where you’ve defined a height of 100%:
@media screen and (min-width: 783px)
.main-navigation {
background: none repeat scroll 0% 0% rgb(255, 255, 255);
background: rgba(255, 255, 255, 0.9);
border-bottom: none;
box-shadow: none;
height: 100%;
position: static;
}
Thanks I chance the it
Height :inherit;
That do the trick.
Tnx again.