Jump to content

XML Renders In IE8 - but only in "compatibility view" mode.


richardbrackin

Recommended Posts

What would cause my XML to show a blank screen in IE8 but if I click the 'compatibility view' button in IE8 it will render just fine?I have read that I might can remove the top line but they say keep the UTF-8 encoding. How to I keep the UTF-8 encoding? There are no special characters so will it default to that?I have also dug up some information to try to add <meta http-equiv="X-UA-Compatible" content="IE=EmulateIE7" /> to make IE8 emulate IE7. Is that the same as forcing compatibility mode?I'm just trying to get IE8 to render XML without the end user having to jump through all sorts of hoops to get it to work.Any help is greatly appreciated.Below is a snippet of the XML file.

<?xml version="1.0" encoding="UTF-8"?><?xml-stylesheet href="meet_the_directors.xsl" type="text/xsl"?><faculty>	<item id="1" dept="Fine Arts">		<firstname>Joey</firstname>		<lastname>Derr</lastname>		<position>Choral Music</position>		<biography>Mr. Derr earned degrees in music [Lipscomb] and educational administration [university of North Alabama]. He directs the senior chorus and assist with show choir. Mr. Derr serves as the elementary principal and teaches a senior high Bible class.</biography>		<facultyphoto>http://marshillbible.smugmug.com/Other//classroom-pictures/736449737_eU5uk-114x170.jpg</facultyphoto>		<emailaddy>jderr@mhbs.org</emailaddy>	</item>	<item id="2" dept="Fine Arts">		<firstname>Joey</firstname>		<lastname>Krieger</lastname>		<position>Instrumental Music</position>		<biography>Mr. Krieger earned his degree in music from the University of North Alabama. He directs all the MHBS bands [5th Grade; 6th Grade; 7th and 8th Grade; High School--Rythym-in-Blue Concert Band and Jazz Band]. In addition to his work with the bands, Mr. Krieger teaches a middle school Bible class.</biography>		<facultyphoto>http://marshillbible.smugmug.com/Other/band-slideshow/735277109_pr4Qb-114x170.jpg</facultyphoto>		<emailaddy>jkrieger@mhbs.org</emailaddy>	</item></faculty>

Here is the top section of the XSL file

<?xml version="1.0" encoding="UTF-8"?><!-- DWXMLSource="meet_the_directors.xml" --><!DOCTYPE xsl:stylesheet  [	<!ENTITY nbsp   " ">	<!ENTITY copy   "©">	<!ENTITY reg    "®">	<!ENTITY trade  "™">	<!ENTITY mdash  "—">	<!ENTITY ldquo  "“">	<!ENTITY rdquo  "”"> 	<!ENTITY pound  "£">	<!ENTITY yen    "¥">	<!ENTITY euro   "€">]><xsl:stylesheet version="1.0" xmlns:xsl="http://www.w3.org/1999/XSL/Transform"><xsl:output method="html" encoding="UTF-8" doctype-public="-//W3C//DTD XHTML 1.0 Transitional//EN" doctype-system="http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd"/><xsl:template match="/"><html xmlns="http://www.w3.org/1999/xhtml"><head>

here is the meat of the XSL file:

<xsl:for-each select="faculty/item"><xsl:sort select="lastname" data-type="text" order="ascending" /><div id="bio_container">    	<span class="blue_bar" id="bio_row"><h2><xsl:value-of select="firstname"/> <xsl:value-of select="lastname"/></h2></span>        <span class="no_bg" id="bio_row"><h3><xsl:value-of select="position"/></h3></span>        <span class="photo_portrait" id="bio_pic"><img src="{facultyphoto}" alt="photo" name="picture" /></span>        <p><xsl:value-of select="biography"/></p>                <div class="italics" id="bio_email"><a href="mailto:{emailaddy}"><xsl:value-of select="emailaddy"/></a></div>    </div>    </xsl:for-each>

Link to comment
Share on other sites

Try to remove the DTD from the XSLT.Also (just in case), try to place the XHTML namespace at the xsl:stylesheet element, like:

<xsl:stylesheet version="1.0" xmlns:xsl="http://www.w3.org/1999/XSL/Transform" xmlns="http://www.w3.org/1999/xhtml">

And make sure the generated source has a head and a body!!! A scaringly large amount of people these days appear to be writing content in the head instead of the body.

Link to comment
Share on other sites

  • 4 weeks later...

Thanks for your attention to this. I've been trying everything (including my best interpretation of your suggested changes) and I've got nothing.I've spent months on this one issue and it just won't resolve.I'm willing to pay for help on this since this is essentially the only remaining issue that keeps the site from going live.Here is the link to the particular page giving me problems.http://demo.aitinc.com/rb/mh/meet_the_faculty.xmlOpen it in IE8 and it's blank.Click the 'compatibility mode' button and it looks right.The XSL page is here:http://demo.aitinc.com/rb/mh/meet_the_faculty.xslThe relevant CSS pages is here:I haven't consolidated and compressed them until I'm sure everything is good to go.http://demo.aitinc.com/rb/mh/desktop.css - main csshttp://demo.aitinc.com/rb/mh/IE7styles.css - for IE7 tweakshttp://demo.aitinc.com/rb/mh/SpryAssets/Sp...rHorizontal.css - for the menu (it goes inside a SpryAssets folder)http://demo.aitinc.com/rb/mh/iphone.css - for displaying on iPhoneThe XML data can be found by viewing source (obviously).One final issue is Firefox 3.6.x will not allow the dropdown menus (adobe spry framework) to work when I've navigated to an XML page. Any ideas?Again, I'm desperate for help and thank you in advance for your time / help.

Link to comment
Share on other sites

You did none of the things I told you to do! Still, I did a closer inspection, and it seems one of your conditional comments (the one inside the "if IE" section) was not properly closed, thereby leaving any IE8 and above in the dust.Here's a fixed version:

<?xml version="1.0" encoding="UTF-8"?><xsl:stylesheet version="1.0" xmlns:xsl="http://www.w3.org/1999/XSL/Transform" xmlns="http://www.w3.org/1999/xhtml">	<xsl:output method="html" encoding="UTF-8" doctype-public="-//W3C//DTD XHTML 1.0 Transitional//EN" doctype-system="http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd" />	<xsl:template match="/">		<html>			<head>				<title>Mars Hill - Meet The Faculty</title>				<link rel="stylesheet" type="text/css" href="iphone.css" media="only screen and (max-device-width: 480px)"/>				<link rel="stylesheet" type="text/css" href="desktop.css" media="screen and (min-device-width: 481px)"/>				<!--[if IE]><link rel="stylesheet" type="text/css" href="desktop.css" media="all" /><![endif]-->				<!-- let's try this -->				<xsl:comment>[if IE]><![if lte IE 7]><link rel="stylesheet" type="text/css" href="desktop.css" media="all" /><link rel="stylesheet" type="text/css" href="IE7styles.css" /><![endif]><![endif]</xsl:comment>				<!-- let's try this -->				<script type="text/javascript" src="jquery.js"> </script>				<script type="text/javascript" src="iphone.js"> </script>				<script src="SpryAssets/SpryMenuBar.js" type="text/javascript"> </script>				<link href="SpryAssets/SpryMenuBarHorizontal.css" rel="stylesheet" type="text/css" />			</head>			<body> 				<div id="container">					<div id="header">						<span class="home">							<a href="mhindex3.html"></a>						</span>						<div id="header_quick_links">Quick<br/>	  Links</div>						<div id="quick_link_list">							<ul>								<li>									<a href="https://www.edline.net/Index.page" title="Edline" target="_blank">Edline</a>								</li>								<li>									<a href="http://www.mhbook.com" title="MHBS Bookstore" target="_blank">Bookstore</a>								</li>								<li>									<a href="http://www.lambertbookhouse.com/index.html" title="Lambert Publishing" target="_blank">Lambert</a>								</li>							</ul>						</div>					</div>					<div id="text_home_link">						<a href="mhindex3.html" name="top_of_page" target="_parent" id="top_of_page">Mars Hill Mobile</a>					</div>					<div class="menuhider">						<input type="submit" name="toggleh1" value="Menu" id="toggleh1"/>					</div>					<div id="menucontainer">						<ul id="MenuBar1" class="MenuBarHorizontal">							<li>								<a href="#" title="About Us" class="MenuBarItemSubmenu">About Us</a>								<ul>									<li>										<a href="welcome_to_mhbs.html" title="Welcome to MHBS">Welcome to MHBS</a>									</li>									<li>										<a href="history.html" title="Our History">History</a>									</li>									<li>										<a href="mission.html" title="Our Mission">Mission</a>									</li>									<li>										<a href="accreditation.html" title="Accreditation">Accreditation</a>									</li>									<li>										<a href="directions.html" title="Directions">Directions</a>									</li>									<li>										<a href="calendar.html" title="Calendar">Calendar</a>									</li>									<li>										<a href="#">Board of Directors</a>										<ul>											<!-- submenu for Board of Directors -->											<li>												<a href="meet_the_board.html" title="Meet the Board">Meet the Board</a>											</li>										</ul>									</li>									<li>										<a href="#" title="Galleries">Galleries</a>										<ul>											<!-- submenu for smugmug Galleries -->											<li>												<a href="photo_galleries.html" title="Photo Galleries">Photo Galleries</a>											</li>											<li>												<a href="video_galleries.html" title="Video Galleries">Video Galleries</a>											</li>										</ul>									</li>								</ul>							</li>							<li>								<a class="MenuBarItemSubmenu" href="#">Academics</a>								<ul>									<li>										<a href="meet_the_faculty.xml">Meet the Faculty</a>									</li>									<li>										<a href="elementary.html">Elementary</a>									</li>									<li>										<a href="middle_school.html">Middle School</a>									</li>									<li>										<a href="high_school.html">High School</a>									</li>									<li>										<a href="#">Academic Achievements</a>										<ul>											<!-- Submenu for Academic Achievements -->											<li>												<a href="test_scores.html">Test Scores</a>											</li>											<li>												<a href="college_acceptance.html">College Acceptance</a>											</li>										</ul>									</li>									<li>										<a href="accelerated_reading.html">Accelerated Reading</a>									</li>									<li>										<a href="summer_reading.html">Summer Reading</a>									</li>									<li>										<a href="guidance_counseling.html">Guidance and Counseling</a>									</li>								</ul>							</li>							<li>								<a class="MenuBarItemSubmenu" href="#">Admissions</a>								<ul>									<li>										<a href="thanks_for_asking.html">Thanks for Asking</a>									</li>									<li>										<a href="meet_the_admissions_staff.html">Meet the Admissions Staff</a>									</li>									<li>										<a href="how_to_apply.html">How to Apply</a>									</li>									<li>										<a href="tuition.html">Tuition and Financial Aid</a>									</li>									<li>										<a href="campus_tour.html">Campus Tour</a>									</li>									<li>										<a href="student_handbook.html">Student Handbooks</a>									</li>									<li>										<a href="testimonials.xml">Testimonials</a>									</li>									<li>										<a href="request_info.html">Contact Us</a>									</li>								</ul>							</li>							<li>								<a class="MenuBarItemSubmenu" href="#">Alumni</a>								<ul>									<li>										<a href="alumni_news.html">Alumni News</a>									</li>									<li>										<a href="class_reunions.html">Class Reunions</a>									</li>									<li>										<a href="#">Alumni Chapters</a>										<ul>											<!-- Alumni Chapter submenu item -->											<li>												<a href="central_al.html">Central AL</a>											</li>											<li>												<a href="north_al.html">North Central AL</a>											</li>											<li>												<a href="mid_tenn.html">Middle Tennessee</a>											</li>											<li>												<a href="west_tenn.html">West Tennessee</a>											</li>											<li>												<a href="south_central_al.html#">South Central AL</a>											</li>										</ul>									</li>								</ul>							</li>							<li>								<a class="MenuBarItemSubmenu" href="#">Athletics</a>								<ul>									<li>										<a href="meet_the_coaches.xml">Meet the Coaches</a>									</li>									<li>										<a href="baseball.html">Baseball</a>									</li>									<li>										<a href="basketball.html">Basketball</a>									</li>									<li>										<a href="cheerleading.html">Cheerleading</a>									</li>									<li>										<a href="football.html">Football</a>									</li>									<li>										<a href="golf.html">Golf</a>									</li>									<li>										<a href="middle_school_sports.html">Middle School Sports</a>									</li>									<li>										<a href="soccer.html">Soccer</a>									</li>									<li>										<a href="softball.html">Softball</a>									</li>									<li>										<a href="team_schedules.html">Team Schedules</a>									</li>									<li>										<a href="tennis.html">Tennis</a>									</li>									<li>										<a href="track.html">Track and Cross Country</a>									</li>									<li>										<a href="volleyball.html">Volleyball</a>									</li>								</ul>							</li>							<li>								<a class="MenuBarItemSubmenu" href="#">Fine Arts</a>								<ul>									<li>										<a href="meet_the_directors.xml">Meet the Directors</a>									</li>									<li>										<a href="show_choir.html">Show Choir</a>									</li>									<li>										<a href="band.html">Band</a>									</li>									<li>										<a href="chorus.html">Chorus</a>									</li>									<li>										<a href="forensics.html">Forensics</a>									</li>									<li>										<a href="drama.html">Drama</a>									</li>									<li>										<a href="fine_elementary.html">Elementary</a>									</li>								</ul>							</li>							<li>								<a class="MenuBarItemSubmenu" href="#">Giving</a>								<ul>									<li>										<a href="meet_development_office.html">Meet the Development Office</a>									</li>									<li>										<a href="endowment_association.html">Endowment Association</a>									</li>									<li>										<a href="development_council.html">Development Council</a>									</li>									<li>										<a href="endowed_scholarships.html">Endowed Scholarships</a>									</li>									<li>										<a href="memorial_gift.html">Memorial Gift</a>									</li>									<li>										<a href="performing_arts_center.html">Performing Arts Center Fund</a>									</li>									<li>										<a href="#">Other Ways to Give</a>										<ul>											<li>												<a href="matching_gifts.html">Matching Gifts</a>											</li>											<li>												<a href="stocks_and_bonds.html">Gifts of Stocks and Bonds</a>											</li>											<li>												<a href="in_kind_gifts.html">In-Kind Gifts</a>											</li>										</ul>									</li>								</ul>							</li>							<li>								<a class="MenuBarItemSubmenu" href="#">Parents</a>								<ul>									<li>										<a href="pto.html">PTO</a>									</li>									<li>										<a href="supply_lists.html">Supply Lists</a>									</li>								</ul>							</li>							<li>								<a class="MenuBarItemSubmenu" href="#">Spiritual</a>								<ul>									<li>										<a href="daily_bible_chapel.html">Daily Bible and Chapel</a>									</li>									<li>										<a href="service.html">Service</a>									</li>									<li>										<a href="high_school_life_day.html">High School Life Day</a>									</li>									<li>										<a href="middle_school_life_day.html">Middle School Life Day</a>									</li>									<li>										<a href="spiritual_emphasis.html">Spiritual Emphasis</a>									</li>								</ul>							</li>						</ul>					</div>					<!-- ********************************************** -->					<!-- ********************************************** -->					<!-- ********************************************** -->					<!-- iphone navigation -->					<div class="iphone_menu">						<h3>							<a href="#" title="Quick Links">QUICK LINKS<span class="iphone_menu_details">  Edline, Bookstore, Lambert</span></a>						</h3>						<div>							<ul>								<li>									<a href="https://www.edline.net/Index.page" title="Edline">Edline</a>								</li>								<li>									<a href="http://www.mhbook.com" title="MHBS Bookstore">Bookstore</a>								</li>								<li>									<a href="http://www.lambertbookhouse.com/index.html" title="Lambert Publishing">Lambert</a>								</li>							</ul>						</div>						<h3>							<a href="#" title="About Us">ABOUT US<span class="iphone_menu_details">  Welcome, Directions, Calendar...</span></a>						</h3>						<div>							<ul>								<li>									<a href="welcome_to_mhbs.html" title="Welcome to MHBS">Welcome to MHBS</a>								</li>								<li>									<a href="history.html" title="Our History">History</a>								</li>								<li>									<a href="mission.html" title="Our Mission">Mission</a>								</li>								<li>									<a href="accreditation.html" title="Accreditation">Accreditation</a>								</li>								<li>									<a href="directions.html" title="Directions">Directions</a>								</li>								<li>									<a href="calendar.html" title="Calendar">Calendar</a>								</li>								<li>									<a href="meet_the_board.html" title="Meet the Board">Meet the Board</a>								</li>								<li>									<a href="photo_galleries.html" title="Photo Galleries">Photo Galleries</a>								</li>								<li>									<a href="video_galleries.html" title="Video Galleries">Video Galleries</a>								</li>							</ul>						</div>						<h3>							<a href="#">ACADEMICS<span class="iphone_menu_details">  Elem, Mid, & High School...</span></a>						</h3>						<div>							<ul>								<li>									<a href="meet_the_faculty.xml">Meet the Faculty</a>								</li>								<li>									<a href="elementary.html">Elementary</a>								</li>								<li>									<a href="middle_school.html">Middle School</a>								</li>								<li>									<a href="high_school.html">High School</a>								</li>								<li>									<a href="test_scores.html">Test Scores</a>								</li>								<li>									<a href="college_acceptance.html">College Acceptance</a>								</li>								<li>									<a href="accelerated_reading.html">Accelerated Reading</a>								</li>								<li>									<a href="summer_reading.html">Summer Reading</a>								</li>								<li>									<a href="guidance_counseling.html">Guidance and Counseling</a>								</li>							</ul>						</div>						<h3>							<a href="#">ADMISSIONS<span class="iphone_menu_details">  Applying, Tuition, Handbooks...</span></a>						</h3>						<div>							<ul>								<li>									<a href="thanks_for_asking.html">Thanks for Asking</a>								</li>								<li>									<a href="meet_the_admissions_staff.html">Meet the Admissions Staff</a>								</li>								<li>									<a href="how_to_apply.html">How to Apply</a>								</li>								<li>									<a href="tuition.html">Tuition and Financial Aid</a>								</li>								<li>									<a href="campus_tour.html">Campus Tour</a>								</li>								<li>									<a href="student_handbook.html">Student Handbooks</a>								</li>								<li>									<a href="testimonials.xml">Testimonials</a>								</li>								<li>									<a href="request_info.html">Contact Us</a>								</li>							</ul>						</div>						<h3>							<a href="#">ALUMNI<span class="iphone_menu_details">  News, Reunions, Associations...</span></a>						</h3>						<div>							<ul>								<li>									<a href="alumni_news.html">Alumni News</a>								</li>								<li>									<a href="class_reunions.html">Class Reunions</a>								</li>								<li>									<a href="central_al.html">Central AL</a>								</li>								<li>									<a href="north_al.html">North Central AL</a>								</li>								<li>									<a href="mid_tenn.html">Middle Tennessee</a>								</li>								<li>									<a href="west_tenn.html">West Tennessee</a>								</li>								<li>									<a href="south_central_al.html#">South Central AL</a>								</li>							</ul>						</div>						<h3>							<a href="#">ATHLETICS<span class="iphone_menu_details">  Details of our athletics...</span></a>						</h3>						<div>							<ul>								<li>									<a href="meet_the_coaches.xml">Meet the Coaches</a>								</li>								<li>									<a href="baseball.html">Baseball</a>								</li>								<li>									<a href="basketball.html">Basketball</a>								</li>								<li>									<a href="cheerleading.html">Cheerleading</a>								</li>								<li>									<a href="football.html">Football</a>								</li>								<li>									<a href="golf.html">Golf</a>								</li>								<li>									<a href="middle_school_sports.html">Middle School Sports</a>								</li>								<li>									<a href="soccer.html">Soccer</a>								</li>								<li>									<a href="softball.html">Softball</a>								</li>								<li>									<a href="team_schedules.html">Team Schedules</a>								</li>								<li>									<a href="tennis.html">Tennis</a>								</li>								<li>									<a href="track.html">Track and Cross Country</a>								</li>								<li>									<a href="volleyball.html">Volleyball</a>								</li>							</ul>						</div>						<h3>							<a href="#">FINE ARTS<span class="iphone_menu_details">  Show Choir, Drama, Forensics...</span></a>						</h3>						<div>							<ul class="iphone_links">								<li>									<a href="meet_the_directors.xml">Meet the Directors</a>								</li>								<li>									<a href="show_choir.html">Show Choir</a>								</li>								<li>									<a href="band.html">Band</a>								</li>								<li>									<a href="chorus.html">Chorus</a>								</li>								<li>									<a href="forensics.html">Forensics</a>								</li>								<li>									<a href="drama.html">Drama</a>								</li>								<li>									<a href="fine_elementary.html">Elementary</a>								</li>							</ul>						</div>						<h3>							<a href="#">GIVING<span class="iphone_menu_details">  Endowments, Memorials, Online...</span></a>						</h3>						<div>							<ul>								<li>									<a href="meet_development_office.html">Meet the Development Office</a>								</li>								<li>									<a href="endowment_association.html">Endowment Association</a>								</li>								<li>									<a href="development_council.html">Development Council</a>								</li>								<li>									<a href="endowed_scholarships.html">Endowed Scholarships</a>								</li>								<li>									<a href="memorial_gift.html">Memorial Gift</a>								</li>								<li>									<a href="performing_arts_center.html">Performing Arts Center Fund</a>								</li>								<li>									<a href="matching_gifts.html">Matching Gifts</a>								</li>								<li>									<a href="stocks_and_bonds.html">Gifts of Stocks and Bonds</a>								</li>								<li>									<a href="in_kind_gifts.html">In-Kind Gifts</a>								</li>							</ul>						</div>						<h3>							<a href="#">PARENTS<span class="iphone_menu_details">  PTO, Supply Lists</span></a>						</h3>						<div>							<ul>								<li>									<a href="pto.html">PTO</a>								</li>								<li>									<a href="supply_lists.html">Supply Lists</a>								</li>							</ul>						</div>						<h3>							<a href="#">SPIRITUAL<span class="iphone_menu_details">  Life Day, Chapel, Service...</span></a>						</h3>						<div>							<ul>								<li>									<a href="daily_bible_chapel.html">Daily Bible and Chapel</a>								</li>								<li>									<a href="service.html">Service</a>								</li>								<li>									<a href="high_school_life_day.html">High School Life Day</a>								</li>								<li>									<a href="middle_school_life_day.html">Middle School Life Day</a>								</li>								<li>									<a href="spiritual_emphasis.html">Spiritual Emphasis</a>								</li>							</ul>						</div>					</div>					<!-- end iphone navigation -->					<!-- begin heading that sits below the menu -->					<div class="page_label_text" id="page_label_holder">Meet The Faculty</div>					<div id="main_container">						<div class="clearboth"></div>						<div class="fullwide" id="primary_text">							<xsl:for-each select="faculty/item">							<xsl:sort select="lastname" data-type="text" order="ascending"/>								<xsl:if test='@dept="teacher"'>							<div id="bio_container">								<span class="blue_bar" id="bio_row">										<h2 select="lastname">										<xsl:value-of select="firstname"/> </h2>										</span>										<span class="no_bg" id="bio_row">											<h3>												<xsl:value-of select="position"/>											</h3>										</span>										<span class="photo_portrait" id="bio_pic">											<img src="{facultyphoto}" alt="photo" name="picture"/>										</span>										<p>											<xsl:value-of select="biography"/>										</p>										<div class="italics" id="bio_email">											<a href="mailto:{emailaddy}">												<xsl:value-of select="emailaddy"/>											</a>										</div>									</div>								</xsl:if>							</xsl:for-each>							<div class="clearboth"> </div>							<div class="page_label_text2" id="page_label_holder2">Meet The Staff</div>							<xsl:for-each select="faculty/item">						<xsl:sort select="lastname" data-type="text" order="ascending"/>								<xsl:if test='@dept="staff"'>							<div id="bio_container">								<span class="blue_bar" id="bio_row">										<h2 select="lastname">										<xsl:value-of select="firstname"/> </h2>										</span>										<span class="no_bg" id="bio_row">											<h3>												<xsl:value-of select="position"/>											</h3>										</span>										<span class="photo_portrait" id="bio_pic">											<img src="{facultyphoto}" alt="photo" name="picture"/>										</span>										<p>											<xsl:value-of select="biography"/>										</p>										<div class="italics" id="bio_email">											<a href="mailto:{emailaddy}">												<xsl:value-of select="emailaddy"/>											</a>										</div>									</div>								</xsl:if>							</xsl:for-each>						</div>					</div>					<!-- end main container -->					<!-- begin footer area -->					<div id="footer">						<span class="copyright">©2010 MHBS All Rights Reserved</span>						<span class="address">698 Cox Creek Pkwy, Florence, AL 35630</span>						<span class="phone">							<a href="tel:(256) 767-1203">(256) 767-1203</a>						</span>						<span class="to_top">							<a href="#top_of_page">To Top</a>						</span>						<span class="email">							<a href="mailto:info@mhbs.org">Email</a>						</span>						<span class="rss_footer">							<img src="images/xml.gif" width="36" height="14" alt="rss"/>						</span>						<span class="sitemap">							<a href="sitemap.html">Site map</a>						</span>						<span class="ait">							<a href="http:/www.aitinc.com">Hosted by AIT, Inc., Florence, AL</a>						</span>					</div>					<!-- end footer area -->				</div>				<!-- end container -->				<script type="text/javascript">					<xsl:comment>						<xsl:text disable-output-escaping="yes"><![CDATA[var MenuBar1 = new Spry.Widget.MenuBar("MenuBar1", {imgDown:"SpryAssets/SpryMenuBarDownHover.gif", imgRight:"SpryAssets/SpryMenuBarRightHover.gif"});//]]></xsl:text>					</xsl:comment>				</script>				<script type="text/javascript">					<xsl:text disable-output-escaping="yes"><![CDATA[var gaJsHost = (("https:" == document.location.protocol) ? "https://ssl." : "http://www.");document.write(unescape("%3Cscript src='" + gaJsHost + "google-analytics.com/ga.js' type='text/javascript'%3E%3C/script%3E"));]]></xsl:text>				</script>				<script type="text/javascript">					<xsl:text disable-output-escaping="yes"><![CDATA[try {var pageTracker = _gat._getTracker("UA-7010892-2");pageTracker._trackPageview();} catch(err) {}]]></xsl:text>				</script>			</body>		</html>	</xsl:template></xsl:stylesheet>

Link to comment
Share on other sites

You did none of the things I told you to do!
I did everything you told me to do. When that didn't appear to work, I reverted back to what I originally had to get back to the original code because it at least opened up in compatibility mode.Just because it's not in this code I posted does not imply I did not try.Thank you so much for your attention. I will check in this fix and see what happens.
Link to comment
Share on other sites

Archived

This topic is now archived and is closed to further replies.

×
×
  • Create New...