Viewing 2 replies - 1 through 2 (of 2 total)
  • Plugin Author Bob

    (@prasunsen)

    Your theme CSS is redefining the form input field as width:100%:

    input,
    select,
    textarea {
    background-color:#EAF4F7;
    border: 1px solid #BEDFE7;
    color: #346978;
    font-family: ‘Droid Sans’, sans-serif;
    font-size: 14px;
    font-size: 1.4rem;
    /*padding: 16px;
    padding: 1.6rem;*/
    padding: 5px;
    padding: .5rem;
    width: 100%;
    }

    You should remove this from your theme CSS file, it’s wrong to redefine HTML tags like this.

    Thread Starter annrusnak2

    (@annrusnak2)

    That was the default setting of the theme. I changed it to auto and it displays properly.

    Thank

Viewing 2 replies - 1 through 2 (of 2 total)
  • The topic ‘Problems with checkbox and radio buttons’ is closed to new replies.