form doesnt show up

  • Thread starter Thread starter Guest
  • Start date Start date
The HTML code itself looks ok at first glance. Check the CSS stylesheet file
though. Try deleting the form entry from the css file and see what happens.
It could be that entry is interfering with how the form itself is rendering.
It's a stab in the dark, but one worth checking.

Hope this helps,
Mark Fitzpatrick
Microsoft MVP - FrontPage
 
I looked at it in FrontPage.
Looked at the css file too.
Looks fine in Edit mode but not in Preview mode
I even changed the background color of the name text box to blue and then
clicked preview.
No luck.
It's got me puzzled.

The only thing I could think of is, that since the form is not in any type
of container such as a table or cell, that it is hidden under the images on
the left of the page.

--
Steve Easton
Microsoft MVP FrontPage
95isalive
This site is best viewed............
........................with a computer





--
Steve Easton
Microsoft MVP FrontPage
95isalive
This site is best viewed............
........................with a computer
 
Bad html
The table above the form is set to 100%, thus preventing anything else from showing in the cell the table is in
Change
<td background="images/index11.jpg">
<table width="100%" height="100%" border="0" cellpadding="0" cellspacing="0">
To
<td background="images/index11.jpg">
<table border="0" cellpadding="0" cellspacing="0">

Better still also nest the form in a cell or table of its own

--

_____________________________________________
SBR @ ENJOY (-: [ Microsoft MVP - FrontPage ]
"Warning - Using the F1 Key will not break anything!" (-;
To find the best Newsgroup for FrontPage support see:
http://www.frontpagemvps.com/FrontPageNewsGroups/tabid/53/Default.aspx
_____________________________________________


|i made a form to send to my email, and it shows when i make it and the code
| is there but nothing shows up on the page.
|
| http://spiralexistence.com/contactme.html
 
Back
Top