Page 1 of 1
Some pages doesn't display content using IE (urgent)
Posted: Thu Jun 29, 2006 2:52 pm
by volcanoboy
Hope someone can help me out here. I've done a site for the firm I work for -
http://www.d5.no/ (the site has a worldimage in the header, if not you're on the old site) The site is based on two templates, one for the frontpage and on for all the others. For some strange reason the text wont display on certain pages. Check some of the links in the menu on the ABOUT US page. The text is there because I can mark and select the text. It's like it's being displayed as white...
Anyone? This is quite urgent. Thanks to anyone who can contribiute

Re: Some pages doesn't display content using IE (urgent)
Posted: Thu Jun 29, 2006 4:05 pm
by Elijah Lofgren
volcanoboy wrote:
Hope someone can help me out here. I've done a site for the firm I work for -
http://www.d5.no/ (the site has a worldimage in the header, if not you're on the old site) The site is based on two templates, one for the frontpage and on for all the others. For some strange reason the text wont display on certain pages. Check some of the links in the menu on the ABOUT US page. The text is there because I can mark and select the text. It's like it's being displayed as white...
Anyone? This is quite urgent. Thanks to anyone who can contribiute
It looks like you've got your doctype repeated twice in the page:
Code: Select all
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<__html xmlns="http://www.w3.org/1999/xhtml">
<head>
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<__html xmlns="http://www.w3.org/1999/xhtml">
You should delete the extra so that part looks like this instead:
Code: Select all
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<__html xmlns="http://www.w3.org/1999/xhtml">
<head>
Then, I would try fixing the XHTML validation errors:
http://validator.w3.org/check?uri=http% ... &verbose=1