Reputation: 11
I want to remove or hide the greyed-out vertical scrollbar when I am viewing pictures with FancyBox 2.1.5 on the following example page:
I've tried pretty much every solution found on google with zero results, can anyone please help...
Upvotes: 1
Views: 9605
Reputation: 11
thanks JFK but someone suggested solving this by changing, in the jquery.fancybox.css file, the following:
.fancybox-lock .fancybox-overlay {
overflow: auto;
overflow-y: scroll;
}
into this
.fancybox-lock .fancybox-overlay {
overflow: auto;
overflow-y: auto;
}
and it worked perfectly ! thanks again
Upvotes: 0