You cannot have this:
Code:
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd">
<html xmlns="http://www.w3.org/1999/xhtml">
in the midst of the head of the document. It belongs at the top, in place of your current opening <html> tag. So, things would then look like this:
Code:
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd">
<html xmlns="http://www.w3.org/1999/xhtml">
<head>
<meta http-equiv="Content-Type" content="text/html; charset=windows-1252">
<meta http-equiv="Content-Language" content="en-us">
<title>Fan Submitted</title>
<meta name="description" content="This site features the music of jazz flugelhorn legend Chuck Mangione. Included is Chuck Mangione's biography, discography and a forum dedicated to this great musician.">
<meta name="keywords" content="chuck mangione, mangione, chuck mangione biography, chuck mangione discography, chuck mangione forum, flugelhorn, mangione magic, jazz">
<meta name="GENERATOR" content="Microsoft FrontPage 6.0">
<meta name="ProgId" content="FrontPage.Editor.Document">
<link rel="stylesheet" type="text/css" href="style.css">
<script type="text/javascript" src="animatedcollapse.js">
/***********************************************
* Animated Collapsible DIV- © Dynamic Drive DHTML code library (www.dynamicdrive.com)
* This notice MUST stay intact for legal use
* Visit Dynamic Drive at http://www.dynamicdrive.com/ for this script and 100s more
***********************************************/
</script>
</head>
<body>
<div align="cen . . .
There probably are other technical errors in the sequence of tags in the head, but that should fix it for IE 7 and not harm others. You could use a transitional HTML 4.01 DOCTYPE and a plain opening <html> tag (as shown in my previous post) instead. Also, any valid DOCTYPE/opening <html> tag combo that is as strict as the one I just mentioned or stricter, may be used.
This is what should (unless there are critical contraindications) generally be used:
Code:
<!DOCTYPE html PUBLIC "-//W3C//DTD HTML 4.01//EN" "http://www.w3.org/TR/html4/strict.dtd">
<html>
Bookmarks