Getting Web Page To Create Icon In "Favourites"

Associate
Joined
22 Dec 2009
Posts
1,364
Location
Upper Skurt
Hi,

Can anybody please tell me how I would get a forum website to create an icon in a users favourites in Internet Explorer or Firefox?

Most web sites seem to transmit a tiny logo or icon when stored in a users favourites and I wondered how this can be set up for bulletin boards such as SMF of phpBB using the board admin options.

For example, my favourites link for the Overclockers UK forum seems to be a tiny logo of a V, which looks like the vBulletin logo.


Rgds
Binty
 
You need to create a favicon. Take a 32x32 image and run it through this.

Then put the favicon.ico file that spits out in the root directory of your site. You can also add a meta tag to specify the favicon, as sometimes the browsers are a little retarded in picking them up and need a helping hand.

Code:
<head>
   <link rel="icon" href="http://www.quotes.co.uk/favicon.ico" type="image/x-icon">
</head>
 
You need to create a favicon. Take a 32x32 image and run it through this.

Then put the favicon.ico file that spits out in the root directory of your site. You can also add a meta tag to specify the favicon, as sometimes the browsers are a little retarded in picking them up and need a helping hand.

Code:
<head>
   <link rel="icon" href="http://www.quotes.co.uk/favicon.ico" type="image/x-icon">
</head>

+1 that's the proper way to do it.
 
Back
Top Bottom