There seems to be two notification outputs on your form / page template.
To ‘fix’ this via CSS and add some style to the notification div at the bottom try this CSS:
.screen-reader-response {
display: none;
}
.wpcf7-response-output.wpcf7-mail-sent-ok {
border: 1px solid #000;
padding: 1%;
You can add this to your theme’s custom css area or create a child theme and add this to style.css.
All the best!
]]>
.screen-reader-response {
display: none !important;
}
.wpcf7-response-output.wpcf7-mail-sent-ok {
border: 1px solid #000 !important;
padding: 1% !important;
}
If this does not work for you please feel free to post the content of your file here (use the code button in your editor before and after your file’s content)
]]>