Forum Replies Created

Viewing 1 replies (of 1 total)
  • 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 1 replies (of 1 total)