I have a Pinterest board embedded, which is taking the complete width at the top of the page.
I want that if I scroll down, the page itself directly scrolls down; not the embedded Pinterest board.
I've tried with this:
#pinterest-container > span {
overflow: hidden;
}
but the board is still scrollable.
I have also tried with javascript, but somehow it is not being inserted in my html. Neither:
var getThis = $('#pinterest-container > span:eq(0) > span:eq(1) > span:eq(0)');
$(getThis).css("overflow", "hidden");
nor:
var getThis = $('#pinterest-container > span:eq(0) > span:eq(1) > span:eq(0)');
$(getThis).addClass("hide-overflow");
And here a jsfiddle: https://jsfiddle.net/w57osokq/
Any idea of how to do it?