• Resolved betterbeer

    (@betterbeer)


    When you select a radio or checkbox when in the application window, it doesn’t become highlighted – there is no way to tell which you have selected.
    Using X-Theme.

    The page I need help with: [log in to see the link]

Viewing 3 replies - 1 through 3 (of 3 total)
  • Plugin Author BlueGlass

    (@blueglassinteractive)

    Hi @betterbeer,

    That’s because your theme hidding radio and checkbox input’s. It probably styles them somehow, but plugins html structure is different and styling not getting applied.

    A quic fix would be to add this to plugin settings page: “Jobs > Settings > Style settings”

    At the bottom of that page you’ll see “Custom CSS”, try adding this lines there:

    input[type="radio"].modal-input-radio {
        visibility: visible;
        position: relative;
        left: 0;
        margin-right: 5px;
    }
    
    input[type="checkbox"].modal-input-checkbox {
        visibility: visible;
        position: relative;
        left: 0;
        margin-right: 5px;
    }

    Best wishes.

    Thread Starter betterbeer

    (@betterbeer)

    BOOM! That worked.
    You rock! So many thanks.
    That’s the fastest support ever. And on a Saturday too.
    Thanks again.

    Plugin Author BlueGlass

    (@blueglassinteractive)

    Yor welcome 🙂

    We accept reviews and ratings https://wordpress.org/support/plugin/job-postings/reviews/ 😛

    Best wishes.

Viewing 3 replies - 1 through 3 (of 3 total)
  • The topic ‘Selected checkbox or radio not highlighted’ is closed to new replies.