tiitus
Forum Replies Created
-
Forum: Themes and Templates
In reply to: [Customizr] Slider not on front page – using polylangHello,
Also read up on this:
https://presscustomizr.com/snippet/using-polylang-customizr-wordpress-theme/But this is no longer available?
Forum: Plugins
In reply to: [Contact Form 7] change colour of submit buttonHi Soyd,
If the theme provides access to a css section, you can try these bits:
The theme has a feature of cf7 skins? if so this is what the selector is:
.wpcf7-form.cf7skins input[type="submit"] { background-color: red; }
Generic input selectors for the submit:
[type=submit], input[name=”YOURBUTTONSNAME”] { background-color: red; }
Forum: Plugins
In reply to: [Contact Form 7] Conditional required field without the pluginHello Takayuki,
After some fiddling I actually remembered that my checkbox value is not true/false(oopsies). So I was just using the wrong value. Seems to be working correctly now that I got the checkbox value I was looking for.
Great snippet of code (and even nicer with the custom validations provided by Contact Form 7)??
Forum: Plugins
In reply to: [Contact Form 7] Suddenly requiring fieldsHi,
All the textareas and text fields are not required from what I can see.
But maybe check out the documentation about radio buttons:
radio represents a group of radio buttons (<input type=”radio”> in HTML). Note that there is no required version of radio (“radio*”). The reason Contact Form 7 doesn’t provide “radio*” is because a radio button is a required field by nature
Maybe you should consider updating the form a tad(if you really have not done so in years :o) to meet your needs a bit better?
Forum: Plugins
In reply to: [Contact Form 7] change colour of submit buttonHi,
I can’t see if you tried anything on the site…
Just the css [type=submit] should be enough to target all the submit types of buttons on your site.
If you are looking to hit that specific button and nothing else, you can add an id to it in your form code and use that in your css.
Also targeting the name is possible in css.
input[name=”goButton”] where the name is your buttons name.