Hi @jebentzelf,
Thanks for reaching out.
The reason why it is happening because of incompatible content. We’ve been trying to find a solution but it is something strange on your install but I found some workaround that would require a little CCS and JS.
I went ahead and add this code to X > Theme Options > JS
jQuery(".entry-content")
.contents()
.filter(function() {
// get only the text nodes
return this.nodeType === 3;
})
.wrap( "<p></p>" );
Add this code to X > Theme Options > CSS
#cs-content ~ p, .entry-content > p, #cs-content ~ br {
display: none;
}
I also tried to test your contact form and your contact form is just working fine.
Please note that custom development is outside the scope of our support. Issues that might arise from the use of custom code and further enhancements should be directed to a third-party developer.
Hope that helps.
Thank you.