Hi Ben,
When the form is being embedded, the form border is automatically being removed indeed, since it was supposed to blend with your existing pages.
However, if you need to have the form to have the same style as the original, you can do so by editing the CSS of your form.
Click "Edit CSS" menu from your machform admin panel and then search this block of code:
/** Embedded Form **/
.embed #top, .embed #bottom, .embed h1{
display: none;
}
.embed #form_container{
border: none;
width: 100%;
background: none;
}
.embed #footer{
text-align: left;
padding-left: 10px;
width: 99%;
}
.embed #footer.success{
text-align: center;
}
.embed form.appnitro
{
margin:0px 0px 0;
}
simply remove all the code above and then refresh your browser to see the result.
MachForm Founder