I am using overflow-x hidden, which works. But you cant use overflow-y in-conjunction with it.
So I checked out this... http://www.brunildo.org/test/Overflowxy2.html
Am I missing something?
Basically this...
header {
overflow-x: hidden;
overflow-y: visible;
}
is exactly the same as using...
header {
overflow-x: hidden;
overflow-y: scroll;
}
Huh? If I wanted scroll I would use overflow-y: scroll;
but it's using it anyway!
Why is this? How can I get round this. I can't do this... http://jsfiddle.net/xMddf/2/
Because in my situation, I need the header to have overflow-y: visible; so my dropdown navigation can be visible.
UPDATE
Please see my fiddle. Please make sure the view finder is bigger than 770px other wise the navigation switched to a mobile nav.
http://jsfiddle.net/joshmoto/42Sgu/
The aim of the game is to keep those RED keyline hidden in the the horizon (like it currently is)
But to allow the navigation drop down to be visible when hovered...