• Basic Extended albums created originally via Nextgen are styled within a div of
    .ngg-albumoverview
    Basic Extended albums created via the Imagely block are styled within a div of
    .ngg-albumoverview.default-view

    Now, the css in nextgen_basic_albums.css has a fault:
    .ngg-albumoverview.defaultview p.ngg-album-gallery-image-counter { display: none; }
    should be changed to { display: inline; }
    so that the image count is displayed correctly.

Viewing 1 replies (of 1 total)
  • Plugin Support Mihai

    (@mceban)

    Hi @mbsharp

    Thanks for the report — we’ve confirmed and reproduced this.

    The image count is hidden by a CSS rule that applies specifically to albums inserted via the Imagely block. The count renders correctly when an album is displayed via the legacy NextGEN Gallery UI, but the updated stylesheet for the block’s default template has two display: none declarations that suppress it. We’ve logged a fix to ship in an upcoming release.

    In the meantime, you can restore the image count by adding the following to Appearance → Customize → Additional CSS:

    .ngg-albumoverview.default-view p.ngg-album-gallery-image-counter {
        display: inline !important;
    }

    That will show the count immediately without waiting for the update.

    Let me know if you run into anything else!

Viewing 1 replies (of 1 total)

You must be logged in to reply to this topic.