davmerit
Forum Replies Created
-
Forum: Plugins
In reply to: [Contact Form 7] Boxes do not showThe actual look of CF7 forms on your website will depend largely on the current WordPress theme used and the CSS styling that theme applies to standard HTML form elements.
To change the style of your CF7 forms you would need to edit the CSS style sheets used by your WordPress theme.
See Styling Contact Form for a general explanation of styling CF7 forms using CSS.
There is a link at the bottom of the page to a comprehensive and detailed article on Styling Contact Form 7 Forms. The article shows people, with suitable HTML & CSS skills, how to change the appearance of their Contact Form 7 Forms to meet their particular requirements.
The problem is caused by the CSS below
input { background: #fff none repeat scroll 0 0; border: medium none; /* the cause of the problem */ font-size: 12px; font-weight: 400; letter-spacing: 2px; line-height: 22px; padding-bottom: 10px; text-transform: uppercase; width: 96%; }
The CSS below would correct the error and make the your form fields visible.wpcf7-text, .wpcf7-textarea { border: 1px solid #ccc; padding: 10px ; border-radius: 5px; } .wpcf7-textarea { width: 718px; }
Forum: Plugins
In reply to: [Contact Form 7] Phone filedYou need to add the form name tag to your email.
For example if you have
[tel my-tel]as your phone field tag, you need to add[my-tel]to the message field in the Mail tab of your CF7 interface.See tag-syntax
Forum: Plugins
In reply to: [Contact Form 7] Date Min With Fallback Has Date DiffersHave you tried https://wordpress.org/plugins/contact-form-7-datepicker/ – it could be of help
Forum: Plugins
In reply to: [Contact Form 7] Redirect LinkForum: Plugins
In reply to: [Contact Form 7] Calculation in formThis is not available directly in Contact Form 7. It can be done via custom programing but you would need to be rather skilled at WordPress development using PHP and/or jQuery.
Forum: Plugins
In reply to: [Contact Form 7] How do I decrease the size of the text boxes?The problem comes from code below.
input[type="text"], input[type="email"], input[type="password"], textarea { padding: 1%; border: 1px solid #EAEAEA; line-height: 20px; width: 98%; /* this is causing the problem */ margin: 0px 0px 20px; background-color: #F8F8F8; border-radius: 3px; }You can find this code on line 281 of style.css in your theme. To fix the problem simply comment out the that like so
input[type="text"], input[type="email"], input[type="password"], textarea { padding: 1%; border: 1px solid #EAEAEA; line-height: 20px; /* width: 98%; */ margin: 0px 0px 20px; background-color: #F8F8F8; border-radius: 3px; }Forum: Plugins
In reply to: [Contact Form 7] Button moving incorrectly(?) after page loadSee Styling Contact Form for a general explanation of styling CF7 forms using CSS.
There is a link at the bottom of the page to a comprehensive and detailed article on Styling Contact Form 7 Forms. The article shows people, with suitable HTML & CSS skills, how to change the appearance of their Contact Form 7 Forms to meet their particular requirements.
The CSS below should fix the problem
.wpcf7-form-control.wpcf7-submit { margin: 0px 0px 20px 20px; }Add your CSS via Child Theme or use custom CSS plugin.
Forum: Plugins
In reply to: [Contact Form 7] Problem for replyYour settings look fine. I would suggest you try testing with a different email app to see if you will get the same problem
Forum: Plugins
In reply to: [Contact Form 7] Align to right – troublesIf this resolves your question, it helps others contributing here, if you can flag your post as [resolved]
Forum: Plugins
In reply to: [Contact Form 7] Align to right – troublesthe text cursor shows only on first text-pole, and to get to the rest You need to push tab on the keyboard
The problem is caused by the following CSS code in http://geolog-wroclaw.pl/wp-content/plugins/wp-google-map-plugin//assets/css/frontend.css :
.wpgmp_map_container { position: relative; /* This is causing the problem */ }I would suggest to you temporally disable the map and see if the problem goes away.
Forum: Plugins
In reply to: [Contact Form 7] Text Starting Outside Of "Message" Box On Contact Page FormSee Styling Contact Form for a general explanation of styling CF7 forms using CSS.
There is a link at the bottom of the page to a comprehensive and detailed article on Styling Contact Form 7 Forms. The article shows people, with suitable HTML & CSS skills, how to change the appearance of their Contact Form 7 Forms to meet their particular requirements.
I have inspected your form and here is what I would suggest. You have to reduce
border-radius: 50px;or change thepadding:CODE FROM YOUR SITE:
input, textarea { padding: 8px 12px 6px 15px; border-radius: 50px; }CORRECTION CODE OPTION 1:
.wpcf7-form .wpcf7-textarea { padding: 20px 12px 6px 20px; }CORRECTION CODE OPTION 2:
.wpcf7-form .wpcf7-textarea{ border-radius: 20px; }Add your CSS via Child Theme or use custom CSS plugin.
Forum: Plugins
In reply to: [Contact Form 7] Some Work, Some Don'tSeems everything looks fine with the form inputs. Kindly ensure that the email address used in the From: field in the mail sechtion is the same as what one used in the other working forms.
Forum: Plugins
In reply to: [Contact Form 7] Contact Form 7 Telephone Field maskPlease explain your problem into detail as it is not very clear to me. You may links and screenshots to explain what you want to do with CF7. If others here are able to understand your actual problem, they may be able and willing to offer a possible solution.
Forum: Plugins
In reply to: [Contact Form 7] contact form broken?Though the plugin successfully sends millions of emails every day, there are a host of issues that can stop or delay emails on both the sending and receiving ends. It depends entirely on your local Server & WordPress configuration. You will need to investigate this issue for your particular local configuration.
See Contact Form 7 Email Issues. There is a link at the bottom of the page to a comprehensive and detailed article which covers many issues. Most people that work through this information appear to be able to resolve their email sending & receiving issues.
If you find you need more detailed advice, after reading and working through the above links, please include a link to your Contact Form 7 form plus all your input in the Form and Mail sections of the CF7 interface. This should allow others to understand your actual problem and offer a possible solution.
Forum: Plugins
In reply to: [Contact Form 7] How to send an email to multiple recipients SEPARATELYSelectable Recipient with Pipes might offer a solution.