I'm trying to change the default thumbnail pic facebook uses when I post my website url on fb. Now I've been on a couple of websites/forums and there is a lot of confusion/differences about it. Most people say that you should include the following line in the <head></head> tag of your homepage:

<link rel="image_src" href="url to your desired thumbnail image.jpg" />

Now I did that (and so did many other people) and it doesn't work(for others as well). Some other folks on different websites suggested including the following:

<meta name="fb" content="url to your desired thumbnail image.jpg" property="og:image"/>

In ASP.NET (visual studio '10) it says that 'property' is not a valid attribute of 'meta'.

Now what schemas should I declare in my html tags for property to be a 'valid' attribute. I went on some big websites to see their coding, and found the following meta tags declared in the <head> tag:

<meta content="IE=100" http-equiv="X-UA-Compatible">
<meta content="text/html; charset=utf-8" http-equiv="Content-Type">

I tried that as well but fb still doesn't use the pic I specified to be used as the thumbnail. My coding and url's are not broken or anything, visual studio debugs it without problems.

Please help...

Thank You

link|improve this question

12% accept rate
Don't look at "big" websites for things like this. Google uses table layouts... – Blender Sep 30 '11 at 16:08
2  
property is not an attribute from the html standard, is an invent from the people of open graph protocol. because name is not enough for them – Einacio Sep 30 '11 at 16:11
feedback

2 Answers

Have you added the Open Graph Protocol? Change your <html> tag to this:

<html xmlns="http://www.w3.org/1999/xhtml"
      xmlns:og="http://ogp.me/ns#"
      xmlns:fb="https://www.facebook.com/2008/fbml">

Also, take a look here for more about Facebook's <meta> tags.

link|improve this answer
from what i know, that would add validation to <og:element> and <fb:element> tags, but will that add the property attribute to <meta> tags? – Einacio Sep 30 '11 at 16:16
yes I found a page about those included on fb -developers.facebook.com/docs/opengraph and included it in my homepage, and I also restarted my webserver. But it still doesn't work when I post my website on fb, fb uses the same images it used to from the start. I also opened a new browser sessio but still no luck... – David Van Staden Sep 30 '11 at 16:17
Are there any valid sites using Facebook's protocol? I don't really think so... – Blender Sep 30 '11 at 16:18
feedback

Try adding the following <meta> tag into your <head> section:

<meta property="og:image" content="URL_to_your_desired_thumbnail_image.jpg" />

Then, enter the URL of your page into the Facebook URL Linter

For 'property' to be a valid attribute of the <meta> tag, you might have to change your <!DOCTYPE ...>.

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.