Ok, so the cursor bug persists after updating to the beta version.
The problem code is still clearly there:
$('body, a').css('cursor', 'wait');
Actually this acts on the whole body and the next:
$('body, a').css('cursor', 'auto');
For some reason Sergio’s fix is not working for me.
I have tracked down the other issue.
In my CSS I have:
.ngg-galleryoverview .ngg-gallery-thumbnail-box {
float: left;
margin: 0;
padding: 5px;
width: 20%;
}
This is to get some control of a proper responsive layout, where I can change the column count (width %) at different screen sizes.
The padding and width in my CSS trigger layout on those elements that are otherwise hidden because they have none. There are no different classes to hook into to add a display: none.
IMO this should be handled with JQuery.
Anyway, at least I can hardcode a column count through the GUI and have a non-broken desktop view for my site now.