QUOTE (Katie* @ Apr 6 2009, 09:19 PM)

Hey. I didn't want to start a new topic for my new project. I'm almost done my website except for adding some sort of form ie. contact or order form. I made one but it's not on the site it like make itself above where the layout is if that makes sense? How do I go about getting it on the site?
Ok thats because you have a table and a bounch of divs.
First of all your code is very messy, it's all over the play, have you considering using a separate css file and link it to the html coding? why do you have a table with a whole bounch of div in it? I suggest that you consider the layout of your site first usally when I design my site I have a div for the entire page, one for header, one for footer, one for body.
Now to answer why your form doesn't go where you want it to go it is because html process codes in layers. If you place the form codes outside of the table and divs it will be process under <body>tag and it doesn't matter if you place the code before or after the table or divs tags, it would be consider as a separate part.
here is how you create a style sheet, open a new css page with dreamweaver or any text adding program, and call it whateveryouwanttocallit.css and than copy and pase your enire style section with out the style></style> to the new css file and save it. Now under your <head> tags add this line
CODE
<link rel="stylesheet" type="text/css" href="whateveryouwanttocallit.css" />
Now depending on which dreamweaver version you have, it should automatically open both html and your css file at once.
Hope this helps
Cheers
Steve