Link to home
Start Free TrialLog in
Avatar of nitinkrjain
nitinkrjainFlag for India

asked on

W3C validation error in Facebook like box

HI

My site coding was W3C standards before i install the Facebook like box.
Now as soon i installed the like box it is showing 7 errors on the site page.

Anyone have got success to fix this issue.

here is the link of like box plugin
http://developers.facebook.com/docs/reference/plugins/like-box/ 


My site is in PHP/My SQL
www.axis-holiday.com 

Please suggest
ASKER CERTIFIED SOLUTION
Avatar of kpmartin
kpmartin
Flag of United States of America image

Link to home
membership
This solution is only available to members.
To access this solution, you must be a member of Experts Exchange.
Start Free Trial
Your DOCTYPE might be part of the issue.

<!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">

Instead of that, try the HTML5 declaration:

<!DOCTYPE html>
<html>
etc...
Avatar of nitinkrjain

ASKER

Thanks