I am working on creating a blog in wordpress
where I used a contact form 7
plugin. Here the email text box looking different. check here.
I am not aware of the coding stuff. How do I make email text box look like other text boxes? Please help me to solve this problem.
The reason it currently looks different is this part of your CSS code (line 195 of
wp-content/themes/simple-catch/style.css
):As you can see, the selector doesn’t include an input with a type of “email” and your email input doesn’t have a class
text
ortitle
, so this rule isn’t triggered on the email field.The solution is very simple – change the selector to something like this:
Now the styling should be applied on the email input as well as on the other text inputs.
Your plugin has applied the styles you see to
input[type='email']
and not toinput[type='text']
Do you have custom CSS plugin installed on your wordpress? If so, you need only give the same properties to
input[type='email']
as are applied toinput[type='text']
. You can find these styles in developer mode in your browser