|
Posted by Jonathan N. Little on 07/27/06 13:48
lukas.zierer@gmail.com wrote:
> hi there!
>
> i've got a little problem with mozilla firefox. open
> http://www.biancoblu.ch/index.php5?id=contact once in internet explorer
> and once in firefox. you'll see, the formular won't be shown in
> firefox. when you have a look at the pages source code, it looks like a
> normal one.
>
> 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.
>
> at the end of this message you'll find a snippet of the page's source
> code.
>
> thank you for helping me
Aside that you should lose the table and the deprecated markup you have
your P element in the wrong place it should go *after* the opening FORM
tag like:
<form ... >
<p>
<input ... >
...
</p>
</form>
NOT:
<p>
<form ... >
<input ... >
...
</form>
</p>
Make that change and your email form will 'appear'
--
Take care,
Jonathan
-------------------
LITTLE WORKS STUDIO
http://www.LittleWorksStudio.com
Navigation:
[Reply to this message]
|