Victor,
Here's the deal. Your doctype is defining the document as XHTML 1.0 Transitional
<!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" dir="ltr" lang="en-US" xml:lang="en-US">
<head profile="http://gmpg.org/xfn/11">
and you're using the optional HTML 5 field types in your form (email, tel, url, etc.) so that's why you're seeing those errors. You can go to your form settings page and set the "Output HTML5" option to "no" and then the fields will use the XHTML 1.0 compliant "text" input type.
screenshot: http://i.imgur.com/Ty8tY.png
Using the input type is standard HTML markup and isn't something that you just replace with a class. Markup and presentation/styling are not the same thing.
Try disabling the HTML5 fields and give it another shot. I'm pretty sure you'll see a marked improvement.
Posted 13 years ago on Sunday September 25, 2011 |
Permalink