Page 1 of 1

HELP!

Posted: Wed Jan 15, 2003 8:33 am
by Rita
Hey! My problem is that the pages on my site won't be in my table which I created in header.php, so the text goes all over the page. How can I make ALL the pages open in a table? please help me.

Posted: Wed Jan 15, 2003 8:37 am
by twigletmac
Hi, could we see the code you are using to set up your template.

Mac

re:

Posted: Wed Jan 15, 2003 8:59 am
by Rita
template? lol

erm.... the header looks like this:

Code: Select all

<p><span style="position: absolute; left: 1; top: -2"><img border="0" src="benadams.jpg" width="800" height="600"></span></p>
<div align="left">
  <table border="1" width="338" height="226">
    <tr>
      <td width="338" height="226">
        <div style="position: absolute; top: 367; left: 11; width: 328; height: 261">
          &nbsp;
        </div>
      </td>
    </tr>
  </table>
</div>
Yep.

and the footer.php is just the basics lol.

Posted: Wed Jan 15, 2003 1:34 pm
by volka
The table is closed before anything is printed. Why should the page-content be in there? ;)
Maybe if you split the code into

Code: Select all

//header.php
<p><span style="position: absolute; left: 1; top: -2"><img border="0" src="benadams.jpg" width="800" height="600"></span></p>
<div align="left">
  <table border="1" width="338" height="226">
    <tr>
      <td width="338" height="226">
        <div style="position: absolute; top: 367; left: 11; width: 328; height: 261">

Code: Select all

//footer.php
        </div>
      </td>
    </tr>
  </table>
</div>

wow..

Posted: Thu Jan 16, 2003 6:17 am
by Rita
YOU ROCK! it's all working now :lol: thanks thanks thanks thanks!! :D