You’ve effectively got 2 different pages in one.
<!DOCTYPE html PUBLIC "-//W3C//DTD HTML 4.0 Transitional//EN" "https://www.w3.org/TR/html40/loose.dtd">
is at the top,
then under the flash banner, you have
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "https://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
Basically the page is trying to get the browser to act in 2 ways, and it can’t.
A webpage should have only one of the following tags:
<html>
<head>
<title>
<body>
and one of the corresponding ‘off tags ( </html>
)
I would suggest this:
– Cut the whole flash banner out. Remove everything above
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "https://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
– From the part you just cut out, keep only the part that starts and end with the ‘object’ tags.
– Paste this new bit in right underneath the <body>
tag.
That should solve the ‘two pages in one’ bit, and will mean that when we look at the page, we can be more confident in helping.
A page that has errors, even if we suggest a fix for one, may cause other effects due to other errors – that’s why fixing a page first is the way to go.
Keep posting – we’ll keep helping ??
(And what was the image error about ? Did you find out ?)