Now Ajax

Now Numbering

How to Make Formatting of Email and Text Field Same in Contact Form 7

If you want to separately format text field and email field in contact form 7, you can do it by this way input[type="text"] { background-color:#000; } and input[type="email"] { background-color:#000; } But in case if you want to keep formatting of input and email field in contact form 7, you can do it with the following custom css. input[type="text"], input[type="email"] { background-color:#000; } Don't forget that it will apply the change to all the input field with text and email attribute. In order to avoid the global formatting of input and text fields, you can use the following CSS...

Read More