Contact Form

Hello, I have the problem that with my website:  


http://demo-1004.de/


the contact form can not be processed:




I would like to have the placeholders in a black. I can't change this in the themeoptions.



Furthermore, the checkbox should be in line with the input field and the button. At the moment the checkbox is indented.


Thank You

Comments

  • Hello,

    Please, set up the Placeholder color in Betheme -> Theme options -> Colors -> Forms, and use the following CSS code:

    .wpcf7 input::placeholder,
    .wpcf7 textarea::placeholder{
       opacity: 1;
    }
    

    The CSS code put in Betheme -> Theme options -> Custom CSS & JS -> CSS.


    Thanks

  • it still look the same.


    And i cant do the checkbox in one line with the button.

  • 1) Styles from our theme are overwritten by other styles, which probably come from one of your plugins.

    Please, disable your plugins one by one (except Contact Form 7), and check when the form is correct.

    2) To erase the space on the left of the checkbox, use the following CSS code:

    .wpcf7-list-item{
       margin-left: 0!important;
    }
    

    Thanks

Sign In or Register to comment.