Another problem:
1. The syntax of the inserted line is incorrect:
Code:
<link rel='shortcut icon' href='http://www.yoursite.com/favicon.ico'>
Should be:
Code:
<link rel="shortcut icon" href="http://www.yoursite.com/favicon.ico">
2. The link rel line is placed at the very top of the page BEFORE either DOCTYPE or <html> or <head>. It should follow the <head> label.