Just because i'm bored:
Get your template with the tables etc in.
Example:
Code: Select all
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml">
<head>
<meta http-equiv="Content-Type" content="text/html; charset=iso-8859-1" />
<title>Untitled Document</title>
</head>
<body>
<table width="100%" border="0" cellspacing="0" cellpadding="0">
<tr>
<td></td>
</tr>
</table>
</body>
</html>
Go to the table and, or cell and copy everything above the opening tag and paste it in 'header.php'.
Example:
Code: Select all
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml">
<head>
<meta http-equiv="Content-Type" content="text/html; charset=iso-8859-1" />
<title>Untitled Document</title>
</head>
<body>
<table width="100%" border="0" cellspacing="0" cellpadding="0">
<tr>
<td>
and the other half in the footer.
Then make new files called linksheader.txt and linksfooter.txt and upload them. Open links.php and change the file from header.txt to linksheader.txt in this string 'require_once('header.txt');' and the same for linksfooter.txt and 'require_once('footer.txt');'.
Paste links.php directly into your template.
That doesn't give me any errors.