Use a valid page, or at least a DOCTYPE that invokes standards. Change:
Code:
<link rel="stylesheet" type="text/css" title="main" href="/layout/stylebg.css">
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0 FINAL//EN">
<HTML>
<HEAD>
<TITLE>World Golf</TITLE>
<META NAME="GENERATOR" CONTENT="WebDesigner/0.1.6">
<meta name="Description" cont . . .
to (HTML 5):
Code:
<!DOCTYPE html>
<HTML>
<HEAD>
<TITLE>World Golf</TITLE>
<link rel="stylesheet" type="text/css" title="main" href="/layout/stylebg.css">
<META NAME="GENERATOR" CONTENT="WebDesigner/0.1.6">
<meta name="Description" cont . . .
or to (closest comparable valid URL DOCTYPE):
Code:
<!DOCTYPE html PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd">
<HTML>
<HEAD>
<TITLE>World Golf</TITLE>
<link rel="stylesheet" type="text/css" title="main" href="/layout/stylebg.css">
<META NAME="GENERATOR" CONTENT="WebDesigner/0.1.6">
<meta name="Description" cont . . .
There still could be problems though, the entire page is sort of sloppily coded. But just this much will probably take care of this issue.
Bookmarks