• I have tried making forms with multiple plug ins to get it to work, but they are all doing the same thing. The multiple choice fields won’t line up and you can’t click them at all. I can’t change the alignment or anything. I don’t know what to do.

    • This topic was modified 5 years, 1 month ago by lintond03.

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

Viewing 1 replies (of 1 total)
  • Theme Author Extend Themes

    (@extendthemes)

    Hello @lintond03,

    Please add this css code in the Additional CSS field in customizer:

    
    .wpforms-field-checkbox ul, .wpforms-field-radio ul {
        text-align: left;
    }
    
    .wpforms-field-checkbox ul li, .wpforms-field-radio ul li {
        display: flex !important;
        flex-grow: 0;
        flex-wrap: nowrap;
        align-content: center;
        justify-content: flex-start;
    }
    
    .wpforms-field-radio ul li input[type="radio"]{
        border-radius:300px!important;
    }
    
    .wpforms-field-checkbox ul li.wpforms-selected input, 
    .wpforms-field-radio ul li.wpforms-selected input {
       background-color:#cdeefd !important;
    
    }
    
    

    And let us know if it works.

Viewing 1 replies (of 1 total)
  • The topic ‘Form Integration not working’ is closed to new replies.