|
Posted by jojo on 07/27/06 15:00
Dylan Parry schrieb:
> lukas.zierer@gmail.com wrote:
>
>> it will be shown, when i remove the <form> tag, but that's not what i
>> want because what i want is a working contact formular.
>
> The problem is probably caused by the fact you have your <form> element
> within a <p> element. This isn't allowed, so the browser is probably
> ignoring it or getting confused about what it should do. I suggest that
> you validate your code if you are having problems.
>
Yes. Validate first and see what cruel mistakes you made. But before
validating add a doctype, the validator loves to find one...
A few comments: tables are for viewing tabular data - so don't use it
for layout.
Try not to mix up CSS and layout information in HTML. Leave out all you
height, width, ... attributes and replace them by CSS.
BTW: German "Formular" is not "formular" in English ("formula" would be
"Formel" in German) but just "form".
[Back to original message]
|