Viewing 2 replies - 1 through 2 (of 2 total)
  • Interestingly, I am having the same issue. Would you mind sharing how you were able to solve this?

    Thread Starter JournalistProgrammer

    (@journalistprogrammer)

    Hey Joshua.

    To be honest this was so long ago that I don’t remember how I fix it. Looking back at my code the only thing that seems different from another demo that i had is that in order to make get the radio buttons away from the screen I am using
    position: absolute; and visibility: hidden.

    /*moving the radio buttons out of the screen*/
    input[type=”radio”] {
    position: absolute;
    visibility: hidden;
    }

    I remember that before I tried to position the radio buttons using left: -9999px;

    If you are doing something similar, maybe you have to use visibility hidden instead.

    Let me know if this works. Good luck.

Viewing 2 replies - 1 through 2 (of 2 total)
  • The topic ‘Bug? CodePen Embed (Well, I think is a bug)’ is closed to new replies.