I am doing a conversion of a theme that is html5 based.
It uses named elements and with fusion I get errors of " element "header" undefined ".
Reason is because fusion uses the following doctype
!DOCTYPE html PUBLIC '-//W3C//DTD XHTML 1.0 Transitional//EN' 'http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd'
If I change the above to
<!doctype html>
The errors are gone and the theme functions better.
Now I looked at the source code of this site, php-fusion.co.uk, and I see 7.02 doctype changed to
<!doctype html>
From the above change does this infer that the future doctype is going to change. ???? question
Also can I tell the person using my conversion that he can change his doctype to allow the theme to work. ???? question
|