Hi guys, not been around for a while ... busy with work etc... Anyway, just need a little help ... i've looked, looked and can't find where i'm going wrong ... it's the header graphics. See: http://bit.ly/cfvlqe there is a small section missing - see other pages all ok ... http://bit.ly/83yLNy thanks for your help.
You are using a header file and calling the same one over and over aren't you? You're not doing a copy/paste, right? From my quick look it looks like you don't. That is inefficient and how you get problems like this. Once your header is right, you keep it right by calling the same code each time. Lets start with both copies <tr> <td><table id="Table_01" width="980" height="150" border="0" cellpadding="0" cellspacing="0"> <tr> <td colspan="8"><img src="local/images/header_0901_01.jpg" width="980" height="109" alt="" /></td> </tr> HTML: The first row doesn't have a </tr> tag then validate your page and see what comes out in the wash.
Not necessarily. You probably have php on your server so change the pages to php, put the standard stuff in header.php and footer.php then for each page include 'header.php'; ... all your stuff ... include 'footer.php';