Jump to content
  • Checkout
  • Login
  • Get in touch

osCommerce

The e-commerce.

fav icon


davejones

Recommended Posts

Posted

You have to create your custom icon (16x16), name it favicon.gif, and then just upload it to the same directory as your web page. An easy way to create your own true .ico file is use an online icon generator. Here's a link to a free one at http://www.favicon.com/

Building the web - One Site at A Time

Posted

You need to upload your favicon.ico file to your catalog directory (or your root directory, depending where you want it), then add this to the META tags in the header of your page. Point the link to the location of your favicon.ico file.

 

<LINK REL="SHORTCUT ICON" HREF="http://www.yourdomain.com/favicon.ico">

They that can give up essential liberty to obtain a little temporary safety deserve neither liberty nor safety. ~ Benjamin Franklin, 1759. տլ

Posted

stick it in your images/icons/ directory and it should automatically get picked up.

Your online success is Paramount.

Posted

this is the snippet of code from the index.php

 

<!doctype html public "-//W3C//DTD HTML 4.01 Transitional//EN">
<html <?php echo HTML_PARAMS; ?>>
<head>
<meta http-equiv="Content-Type" content="text/html; charset=<?php echo CHARSET; ?>"> 
<title><?php echo TITLE; ?></title>
<base href="<?php echo (($request_type == 'SSL') ? HTTPS_SERVER : HTTP_SERVER) . DIR_WS_CATALOG; ?>">
<link rel="stylesheet" type="text/css" href="stylesheet.css">

 

but where about do i insert the :

 

<LINK REL="SHORTCUT ICON" HREF="http://www.yourdomain.com/favicon.ico">

Posted

put is right below

<meta http-equiv="Content-Type" content="text/html; charset=<?php echo CHARSET; ?>">

 

you might have to do it on every page which sucks, I dont know, never done this.

 

Ryan

If I was crafty, this would be a funny signature.

Posted

I just made an ico file and put it into my root directory. Then when I go to my site and save the address to my favorites it shows up so I know it works. You are not making the icon right. You have to have a special program. I just downloaded iconforge for a trial and it worked. Go to my site and add to favorites to try it out.

 

I dont know if it can be made so it shows in the url.

 

Ryan

If I was crafty, this would be a funny signature.

Posted

it looks like after you add it to your favorites, the icon will then start appearing in the url.

If I was crafty, this would be a funny signature.

Archived

This topic is now archived and is closed to further replies.

×
×
  • Create New...