Viewing 7 posts - 1 through 7 (of 7 total)
  • Author
    Posts
  • #472641

    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.

    #472673

    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

    #472692

    Thanks! That fixed it.

    #472747

    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

    #473384

    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.

    #473807

    Hi!

    Try switching it to this.

    #top label.hidden {
      display: block !important;
      visibility: visible !important;
    }

    Cheers!
    Elliott

    #473933

    Yes, that fixed it! Thanks again!

Viewing 7 posts - 1 through 7 (of 7 total)
  • The topic ‘text area label not displaying on contact form’ is closed to new replies.