Sorry Peter, but it seems my mail server will not relay any mail going to kingsbarn.freeserve.co.uk. Beats me why - I'll have to look into it.
Anyway, I think I've figured out the problem with the homepage. It seems the left placement of the menu is a fixed number. That might be fine if you had everything justified left, like many pages do, but you have everything justified center, which means that won't work, because different screen resolutions will have the menu in totally different places in relation to the rest of the content. I assume you designed the page with 800x600 resolution in mind, so I wrote a bit of code that will place the menu where you see it in 800x600 for all resolutions. If that was a wrong assumption on my part, let me know, and I'll tweak it to get the effect you want.
Anyway, somewhere in the code for the homepage is this line:
You need to change it to look like this:
That should do it.
Anyway, I think I've figured out the problem with the homepage. It seems the left placement of the menu is a fixed number. That might be fine if you had everything justified left, like many pages do, but you have everything justified center, which means that won't work, because different screen resolutions will have the menu in totally different places in relation to the rest of the content. I assume you designed the page with 800x600 resolution in mind, so I wrote a bit of code that will place the menu where you see it in 800x600 for all resolutions. If that was a wrong assumption on my part, let me know, and I'll tweak it to get the effect you want.
Anyway, somewhere in the code for the homepage is this line:
menux=30 //The left placement of the menu
//The left placement of the menu
if ( screen.width < 800 )
menux=30
else
menux=(((screen.width - 755) / 2) + 8)
if ( screen.width < 800 )
menux=30
else
menux=(((screen.width - 755) / 2) + 8)
Comment