Home / Admin / How to Automatically Submit a Form with a Field Choice – CSS
Duplicate Snippet

Embed Snippet on Your Site

How to Automatically Submit a Form with a Field Choice – CSS

<10
Code Preview
css
button#wpforms-submit-3046 {
    display: none;
}
 
form#wpforms-form-3046 span.wpforms-icon-choices-label {
    font-size: 0;
}
 
ul#wpforms-3046-field_3 li label:hover, ul#wpforms-3046-field_4 li label:hover, ul#wpforms-3046-field_3 li.wpforms-selected label, ul#wpforms-3046-field_4 li.wpforms-selected label  {
    box-shadow: none;
}
 
form#wpforms-form-3046 ul.wpforms-icon-choices .wpforms-icon-choices-item label{
    margin:0 auto;
    padding:0;
}
 
div#wpforms-3046-field_4-container {
    width: 20%;
    float: left;
}
 
div#wpforms-3046-field_3-container {
    width: 20%;
    float: right;
}
 
@media screen and (max-width: 600px) {
     
div#wpforms-3046-field_4-container {
    width: 50%;
    float: left;
}
 
div#wpforms-3046-field_3-container {
    width: 50%;
    float: right;
}
 
form#wpforms-form-3046  .wpforms-layout-column {
    width: 50%;
}
     
form#wpforms-form-3046  .wpforms-field-layout-columns {
        flex-direction: unset;
    }
     
}

Comments

Add a Comment