If I run my site through validator.w3.org I’m getting also a lot of errors such as below. Maybe this has got something to do with it?
##############################
# Error Line 69 column 93: “Probleem” is not a member of a group specified for any attribute.
…d.jpg” alt=”TonyMoore.nl – “Probleem met Internet Explorer” align=”right”/>He
# Error Line 69 column 97: “met” is not a member of a group specified for any attribute.
…g” alt=”TonyMoore.nl – “Probleem met Internet Explorer” align=”right”/>Het sc
# Error Line 69 column 106: “Internet” is not a member of a group specified for any attribute.
…onyMoore.nl – “Probleem met Internet Explorer” align=”right”/>Het schijnt dat
####################
These are errors regarding an alt tag. That’s weird isn’t it?
Most of the errors reported above, I’ve fixed. But the problem with IE (not showing the complete page – press CTRL+F5 a few times on my site and you know what I mean) still exists.
Anyone got a clue?
Problem solved!
A few lines of code were missing in one of my posts
#### code that caused the problem ######
<embed style=”width:490px; height:416px;” id=”VideoPlayback” type=”application/x-shockwave-flash” src=”http://video.google.com/googleplayer.swf?docId=1026936766153024635&hl=nl”></embed>
#### end of bad code #######
—–
#### start of correct code ######
<embed style=”width:490px; height:416px;” id=”VideoPlayback” type=”application/x-shockwave-flash” src=”http://video.google.com/googleplayer.swf?docId=1026936766153024635&hl=nl” allowScriptAccess=”sameDomain” quality=”best” bgcolor=”#ffffff” scale=”noScale” salign=”TL” FlashVars=”playerMode=embedded”></embed>
#### end of correct code ######
😉