Title: WPForms form problem
Last modified: November 17, 2020

---

# WPForms form problem

 *  Resolved [pivtrek](https://wordpress.org/support/users/pivtrek/)
 * (@pivtrek)
 * [5 years, 7 months ago](https://wordpress.org/support/topic/wpforms-form-problem/)
 * Hi, I’ve got some annoying problem. I created my own form to my website in WPForms.
   I created this website in elementor. The problem is when i put my form to the
   site there is alwyas a click checkbox in the left up corner. I don’t know how
   to deal with that. I didn’t create this.Does any of you know the solution for
   this ?
    -  This topic was modified 5 years, 7 months ago by [pivtrek](https://wordpress.org/support/users/pivtrek/).
 * The page I need help with: _[[log in](https://login.wordpress.org/?redirect_to=https%3A%2F%2Fwordpress.org%2Fsupport%2Ftopic%2Fwpforms-form-problem%2F%3Foutput_format%3Dmd&locale=en_US)
   to see the link]_

Viewing 2 replies - 1 through 2 (of 2 total)

 *  [Jade](https://wordpress.org/support/users/jadeam/)
 * (@jadeam)
 * [5 years, 7 months ago](https://wordpress.org/support/topic/wpforms-form-problem/#post-13679838)
 * Hi [@pivtrek](https://wordpress.org/support/users/pivtrek/),
 * I took a look at the form and I believe I see the issue with the checkbox/radio
   button styling. The WordPress theme is changing the browser’s default appearance
   for checkbox/radio button inputs and that’s conflicting with WPForms styles.
 * To address this, we need to make a small CSS tweaks, which I’ve included below:
 *     ```
       .wpforms-container input[type=radio] {
       	-webkit-appearance: radio !important;
       	-moz-appearance: radio !important;
       	appearance: radio !important;
       }
   
       .wpforms-container input[type=checkbox] {
       	-webkit-appearance: checkbox !important;
       	-moz-appearance: checkbox !important;
       	appearance: checkbox !important;
       }
   
       .wpforms-container input[type=radio]:checked:before,
       .wpforms-container input[type=radio]:before,
       .wpforms-container input[type=checkbox]:checked:before,
       .wpforms-container input[type=checkbox]:before,
       .wpforms-container input[type=radio]:checked:after,
       .wpforms-container input[type=radio]:after,
       .wpforms-container input[type=checkbox]:checked:after,
       .wpforms-container input[type=checkbox]:after {
       	display: none !important;
       }
       ```
   
 * In case it helps, [here’s a tutorial](http://www.wpbeginner.com/plugins/how-to-easily-add-custom-css-to-your-wordpress-site/)
   from WPBeginner on easy ways to add custom CSS like this to your site.
 * I hope this helps!
 *  Thread Starter [pivtrek](https://wordpress.org/support/users/pivtrek/)
 * (@pivtrek)
 * [5 years, 7 months ago](https://wordpress.org/support/topic/wpforms-form-problem/#post-13685455)
 * THANK YOU SO MUCH, IT WORKED!

Viewing 2 replies - 1 through 2 (of 2 total)

The topic ‘WPForms form problem’ is closed to new replies.

 * ![](https://ps.w.org/wpforms-lite/assets/icon.svg?rev=3254748)
 * [WPForms - Easy Form Builder for WordPress - Contact Forms, Payment Forms, Surveys, & More](https://wordpress.org/plugins/wpforms-lite/)
 * [Frequently Asked Questions](https://wordpress.org/plugins/wpforms-lite/#faq)
 * [Support Threads](https://wordpress.org/support/plugin/wpforms-lite/)
 * [Active Topics](https://wordpress.org/support/plugin/wpforms-lite/active/)
 * [Unresolved Topics](https://wordpress.org/support/plugin/wpforms-lite/unresolved/)
 * [Reviews](https://wordpress.org/support/plugin/wpforms-lite/reviews/)

 * 2 replies
 * 2 participants
 * Last reply from: [pivtrek](https://wordpress.org/support/users/pivtrek/)
 * Last activity: [5 years, 7 months ago](https://wordpress.org/support/topic/wpforms-form-problem/#post-13685455)
 * Status: resolved