Click to See Complete Forum and Search --> : Validation Error problem
lkeeney
10-22-2009, 03:38 PM
What do web developers do when things like this don't validate?
The "if" and "endif" are the problem.
<![if gte IE 7]>
<!--#include virtual="../includes/footer.html"-->
<![endif]>
ryanbutler
10-22-2009, 04:52 PM
What do web developers do when things like this don't validate?
Write the conditional comment correctly :D
<!--[if gte IE 7]>
<!--#include virtual="../includes/footer.html"-->
<![endif]-->
lkeeney
10-22-2009, 06:26 PM
Write the conditional comment correctly :D
<!--[if gte IE 7]>
<!--#include virtual="../includes/footer.html"-->
<![endif]-->
Thank you! This does help when written correctly.