Link to home
Start Free TrialLog in
Avatar of kk89
kk89

asked on

Footer disappearing

Hi, I'm editing code and was asked to put in an external form. for some reason when I insert the code in the page the footer will disappear. I didn't originally build it so sorry for all the crazy tables.

This is the code that they wanted:

<script type="text/javascript" src="http://form.jotform.com/jsform/10295643379&quot;&gt;&lt;/script>

Open in new window



 Any ideas?

<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN"
"http://www.w3.org/TR/html4/loose.dtd">
<html>
<head>
<? include ("inc/header.php") ?>
</head>
<? include ("inc/body.php") ?>
<table width="970" border="0" align="center" cellpadding="0" cellspacing="0">
          <tr>
                    <td align="center">
                      <div align="center"><a href="/index.php"><img src="/imgs/top.gif" width="752" height="132" border="0"></a> </div></td>
          </tr>
          <tr>
                    <td bgcolor="#8D675A">
                    <? include ("inc/nav.php") ?>	</td>
          </tr>
  <tr>
 
    <td valign="top" bgcolor="#8D675A" class="contentbg">
     <div style="overflow:auto; height:490px;">
	<div style="margin-top:15px;">	
            <table width="922" border="0" align="center" cellpadding="5" cellspacing="0">
                      <tr valign="top">
                                <td width="498">		          
                        <p><script type="text/javascript" src="http://form.jotform.com/jsform/10295643379&quot;&gt;&lt;/script> </p>
                        
                                </td>
                        
                      </tr>
            </table>
	</div>
	</div>
    </td>
	
  </tr>
  <tr>
    <div class="bottombackground"><td height="199" valign="top"><? include ("inc/footer.php") ?></td></div>
  </tr>
</table>
<? include ("inc/google.php") ?>
</body>
</html>

Open in new window

ASKER CERTIFIED SOLUTION
Avatar of Chris Stanyon
Chris Stanyon
Flag of United Kingdom of Great Britain and Northern Ireland image

Link to home
membership
This solution is only available to members.
To access this solution, you must be a member of Experts Exchange.
Start Free Trial
Avatar of kk89
kk89

ASKER

fantastic! its always the little stupid things isn't it :)

I just had to adjust one thing because the background image wasn't showing up
<td height="199" valign="top" background="/imgs/bottom.gif"><? include ("inc/footer.php") ?></td>

Open in new window

Avatar of kk89

ASKER

Thank you for taking the time and looking over my code.