Posted by JEMS on

Does anyone know how I can remove the words *Note everything marked with a * is required - on the Contact Us page?

Many thanks,

Michelle

2: Re: contact us page (response to 1)
Posted by Joe Oldak on

This isn't really a new feature or an announcement, but...

There's no way to do it in the includelet settings. The only way would be a snippet of custom CSS.

If you add this into the Raw Header HTML in your theme options that will hide it for the contact form!

<style>
.contactEmail .form-required-header {
  display: none;
}
</style>

Good luck!

Joe