Give me a HTML-MailForm Code which I can set with copying & pasting to my "Pages" or "Posts".
RL uses the div-type in the live demo.
div-type
Add the following to the CSS:
/*---------------------------------------------------
FORM
--------------------------------------------------*/
.inputtext {
width: 100%;
}
ul-type
The form's style is created by ul. To remove the list mark(*) that is automatically displayed at the beginning of the sentence, add the following to the CSS:
/*---------------------------------------------------
FORM
--------------------------------------------------*/
#form_container ul li {
list-style-type:none
}
(*) Depending on your theme, you don't see the list mark at all.
table-type
( 2017/September/25, 20:20:17, JST )