davmerit
Forum Replies Created
-
Forum: Plugins
In reply to: [Contact Form 7] Do Autoresponder Emails Slow Down CF7?Please include a link to your Contact Form 7 form. 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] on_submit only after ajax-requeston_sent_ok is probably more suitable for executing a function after the form has been submitted. See Additional Settings
See https://wordpress.org/support/topic/plugin-contact-form-7-this-is-how-to-showhide-fields-with-jquery?replies=44 – might require some skill with jQuery
Forum: Plugins
In reply to: [Contact Form 7] in-line spacing for textbox and titlesIt seems you’ve solved this π
Selectable Recipient with Pipes might offer a solution.
Forum: Plugins
In reply to: [Contact Form 7] in-line spacing for textbox and titlesPlease include a link to your Contact Form 7 form so we can examine your form in detail using Firebug or Chrome Dev Tools to understand the CSS used for your CF7 form elements.
Forum: Plugins
In reply to: [Contact Form 7] Test mail is sent successfully, but not the data in the formDo you actually receive the mail?
If you could provide the error message you get, a link to your Contact Form 7 form plus all your input in the Form and Mail sections of the CF7 interface, and others here are able to understand your actual problem, they may be able to offer a possible solution.
Forum: Plugins
In reply to: [Contact Form 7] Text Colour doesn't changeSee Styling Contact Form 7 Forms for a general explanation of styling CF7 forms using CSS.
You could do something like the code below to change the text-color of the text in CF7
.wpcf7-form { color: #000000; }Forum: Plugins
In reply to: [Contact Form 7] Reducing number of rows?Example; you could use the CSS below to change the height and width of the the textarea of Contact Form 7
.wpcf7 .wpcf7-textarea { width: 300px; height: 100px }Forum: Plugins
In reply to: [Contact Form 7] Size inputareasSee http://contactform7.com/faq/#Why_does_my_email_address_input_field_look_different
βAlso See Styling Contact Form 7 Forms for a general explanation of styling CF7 forms using CSS.
Forum: Plugins
In reply to: [Contact Form 7] Unresponsive on Mobile Device@paperboi1 See Styling Contact Form 7 Forms for a general explanation of styling CF7 forms using CSS.
Use Chrome Dev Tools to examine the HTML and CSS of your CF7 form in detail. Once you understand how the HTML and CSS is configured in your CF7 form, you should be able to use
@mediaCSS rule to set screen break points on various screen sizes to suite your needs.You may also do a basic responsive resizing with something like:
.wpcf7-form { width: 100%; } .wpcf7-form input, .wpcf7-form input[type="text"], .wpcf7-form input[type="email"], .wpcf7-form input[type="tel"], .wpcf7-form textarea, { width: 100%; }Forum: Plugins
In reply to: [Contact Form 7] Filling the formular in to stepsThis 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] No message bodyIs
[yourmessage]the tagnameyou used in the text/message field?Please include all your input in the Form and Mail sections of the CF7 interface. If others here are able to understand your actual problem, they may be able to offer a possible solution.
Forum: Plugins
In reply to: [Contact Form 7] Reducing number of rows?If you want to reduce the number of rows because you want to limit the number of characters then you may take a look at http://contactform7.com/max-min-length-options-and-character-count/
is this possible to target and override through CSS?
You may use CSS to control the style/looks of the textarea in terms of width, height, etc. But limiting the actual number of lines of entry in the textarea can generally be done via JavaScript.
I have reviewed the form at the link provided using a Blackberry Z10. The upload button shows fine.
However if is shows too wide on certain devices then I suggest you consider those screen sizes and use
@mediaCSS rule to target them. You may be able to adjust the space around the upload button.See Styling Contact Form 7 Forms for a general explanation of styling CF7 forms using CSS.