I have a particular page where navigation is done just by clicking.
For this purpose I have set the following css:
body{
overflow:hidden;
}
Now, to navigate to a particular section of my page the link must be visible, otherwise I'm stuck at that position. This requires that a certain portion of my page should be "scrollable".
In the following fiddle I'm stuck at "Div3": Fiddle
How do I make my page "scrollable" when it is displaying "Div3", otherwise not.
EDIT:
I can't use overflow-y: scroll;
for my "Div3" since it covers the full width of my page. Adding that shifts the contents of "Div3" which I do not want.