I really like the look of the Nice Simple Contact Form (Demo) But I like the features of the Contact Form (Demo)
So I edited the pictures in the Contact Form to look like thoughts in the Nice Simple Contact Form
That's when I bumped into my problem. (read the code for a description)
change the background images to look like you want it to. then whichever contact form you like copy it exactly, but change the image & the post part of the HTML form, to your directory you will be using.
I added to the code below from your comments
// CHANGE THE VARIABLES BELOW
$EmailFrom = \"junk@junk.com\"; // What do I do with this? I would get the persons email here e.g.$Email = Trim(stripslashes($_POST['Email'])); $EmailTo = \"junk@junk.com\"; // Is this the E-mail that the info will be sent to? yes $Subject = \"Mydomain -- Contact\"; // I know what this is :)
$Name = Trim(stripslashes($_POST['Name'])); // No Idea - getting the name from the HTML form variable called Name $Tel = Trim(stripslashes($_POST['Tel'])); // Still no idea - same idea as above $Email = Trim(stripslashes($_POST['Email'])); // You guessed it no idea - you guessed it same idea as above $Message = Trim(stripslashes($_POST['Message'])); // Dont know what to put :( - you don't need to , the person filling in the form will do that, all your doing is collecting the content of each part above //the Trim(stripslashes($_POST['Name'])); is cleaning what was put in the field named Name and assigining it to a variable called $Name - which you can use later on.
But I also what the form to all be in a single row. Now It has the "Name" and "Email" on the left and the "message" on the right. How would I fix this? eh??? explain further, please treat me like a 5 yr old when your explaining. what I think is nameGDN____ emailGDN_____ telGDN_____ (one very very long contact form, which I would never fill in.