I am having a conflict between a plugin and the contact form. The text area label is not showing on the contact form. It should be showing “Message”, but it is not appearing.
Any thoughts?
Thanks for your help.
Hey mrdan!
It looks like one of your plugins is adding some CSS which is hiding it.
.hidden {
display: none !important;
visibility: hidden !important;
}
Add this to your custom CSS to override it.
#top .hidden {
display: block !important;
visibility: visible !important;
}
Regards,
Elliott
Thanks! That fixed it.
Hi!
Glad u got it shorted out!
We would be more than happy to assist you further on anything else you would need! Do not hesitate to open a new tasK!
Cheers!
Basilis
There appears to be a side effect of the CSS change. Now the contact form shows a little text field just above the first text field and it overlaps the label.
Hi!
Try switching it to this.
#top label.hidden {
display: block !important;
visibility: visible !important;
}
Cheers!
Elliott
Yes, that fixed it! Thanks again!