Link to home
Start Free TrialLog in
Avatar of Eaddy Barnes
Eaddy BarnesFlag for United States of America

asked on

Contact form not showing up in Wordpress Page

Hey guys,

I just installed the plugin Contact Form 7 to my WordPress installation.

Now when i add the short code to the page i cannot see the contact form fully. It shows the field headings but the actual fields cant be see but can be typed in..

see link here for example: http://logoshealthcare.com/contact-us

Any idea what could be the problem?
Avatar of Tom Beck
Tom Beck
Flag of United States of America image

You have removed all the borders from everything on line 62 of healthcare/styles.css

* {
    border: medium none;
    outline: medium none;
    text-decoration: none;
}
You could add something like this to get borders just on the inputs:

input.wpcf7-form-control {
    border: 1px solid #999
}
Avatar of Eaddy Barnes

ASKER

Hi tommyboy, i tried that and still no show on the textarea for the form..

have a look see.

http://logoshealthcare.com/contact-us
ASKER CERTIFIED SOLUTION
Avatar of Tom Beck
Tom Beck
Flag of United States of America image

Link to home
membership
This solution is only available to members.
To access this solution, you must be a member of Experts Exchange.
Start Free Trial
Thanks King