Support » Plugin: SlickQuiz » "Next" & "Check my answer" buttons not visible but present, correct answer s

  • Resolved keycheck

    (@keycheck)


    Hello,
    In my quiz (available here) the “Back” button displays fine but the other two buttons, “Next” and “Check my answer” are present but not visible (same colour as the background of the page). When you click them, they work fine.

    Another issue is that when you click “Check my answer” without selecting an answer, the correct answer is highlighted in green. I have seen a thread on this issue before and tried your workaround but it didn’t work. Any idea what I could do?

    BTW, many thanks for a great plugin!

    https://wordpress.org/plugins/slickquiz/

Viewing 1 replies (of 1 total)
  • Plugin Author jewlofthelotus

    (@jewlofthelotus)

    @keycheck – It looks like your theme has some styles that are overriding the quiz CSS.

    The first fix should be to copy the following to the bottom of your theme’s style.css file. That will hide the buttons that shouldn’t be appearing until they’re relevant.

    .slickQuizWrapper a.button {display: none;}

    To make the style of the buttons consistent and to remove the answer highlighting, copy the following to the bottom of your theme’s stylesheet:

    .slickQuizWrapper .button {
        color:#ffffff !important;
        background-color: darkcyan !important;
    }
    .slickQuizWrapper .button:hover {
        background-color:darkslategray !important;
    }
    .slickQuizWrapper .button.backToQuestion {
        background: #ccc !important;
    }
    .slickQuizWrapper ul.answers li.correct {
        color: #555555;
    }

    Let me know if you do those things and still see problems!

Viewing 1 replies (of 1 total)
  • The topic ‘"Next" & "Check my answer" buttons not visible but present, correct answer s’ is closed to new replies.