Viewing 9 replies - 1 through 9 (of 9 total)
  • Plugin Author shauno

    (@shauno)

    Does it only appear when you click to vote? And does the vote actually save?

    Thread Starter musgod

    (@musgod)

    It shows up when the page loads. The vote is recorded though.

    Plugin Author shauno

    (@shauno)

    Ah, your css is forcing display block of all images inside ‘nggv-container’ (and obviously the loading gif is an image inside the container)

    .ngg-imagebrowser img {
        border: 1px solid #A9A9A9;
        display: block !important;
        margin-bottom: 10px;
        margin-top: 10px;
        padding: 5px;
        width: 100%;
    }

    That second line, with the ‘!important’ overrides the inline display:none on the loading gif

    Thread Starter musgod

    (@musgod)

    Thanks, any suggestions on how to fix it?

    Plugin Author shauno

    (@shauno)

    Um, perhaps removing the !important from that line.
    OR maybe even adding a new rule:

    .nggv-star-loader {
      display:none !important;
    }

    But my css is poor. I would suggesst showing this to whoever did your original css and having them fix it.

    Good luck

    Thread Starter musgod

    (@musgod)

    Thank you for your help, but I didn’t edit the css at all. The only modifications I have done is place the <?php echo nggv_imageVoteForm($image->pid); ?> tag in:
    1. gallery.php
    2. singlepic.php
    3. imagebrowser.php

    I will look for the css and try changing it to see if it works. My css isn’t that good either 🙂

    wahhadesign

    (@wahhadesign)

    Let me know if you find an answer to this. I know css, and that did not fix it for me.

    wahhadesign

    (@wahhadesign)

    Nevermind, I got this to work.

    mtx

    (@mtx)

    how? – I’ve got the same issue 🙁

Viewing 9 replies - 1 through 9 (of 9 total)

The topic ‘[Plugin: NextGEN Gallery Voting] Problem with ind Image Voting’ is closed to new replies.