Can this be replacd into <div class="facebook... , i do not want to use facebook prefix. i want to use div tag as it is more standard html
<fb:like layout="box_count" show_faces="false" font=""></fb:like>
Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.
Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.
Lost your password? Please enter your email address. You will receive a link and will create a new password via email.
Please briefly explain why you feel this question should be reported.
Please briefly explain why you feel this answer should be reported.
Please briefly explain why you feel this user should be reported.
This is not possible.
Side note:
fb:like is actually standard html in a way. The fb: is a namespace and the like is an element in the fb namespace. This is just the same as a div being and element in the default html namespace. So you are actually using standard html.
You’ll see the namespace declared in the html tag when you visit the page with the like button. The fb namespace appears along side the default html namespace:
<html xmlns="http://www.w3.org/1999/xhtml" xmlns:fb="http://www.facebook.com/2008/fbml" ... />