• Resolved poponthe

    (@poponthe)


    Hey,

    I tried to do a search for this, but all I got was WordPress’s actual favicon file, so please forgive me and just reply with a link if there is already some documentation about it.

    I’d like to change the favicon (the little icon that appears next to the URL bar and on the favorites list of some browsers) but I’m not really sure how.

    What kind of file do I have to make? And where am I supposed to put it?

    Thanks!
    Alex

Viewing 4 replies - 1 through 4 (of 4 total)
  • http://www.chami.com/html-kit/services/favicon/
    That’s the site to create.

    Then when you have it, edit the theme header file and put this between the <head> </head> tags
    <link rel="shortcut icon" type="image/ico" href="http://www.your-domain.com/favicon.ico" />

    and upload the .ico to the same place.

    Thread Starter poponthe

    (@poponthe)

    Thanks so much! Worked like a charm.

    Hey podz I was just about to fiddle with this and you made it painless. Many thanks for all the work you do here.

    Hi Poponthe, Podz,

    My site http://www.bumiprojectpro.biz/wp/ currently have (i believe is) the original favicon, since it was already there after installation.

    I am using the Classic Theme, and i just can’t figure out exactly where is “between the <head> </head> tags” in the header.php of the said Classic Theme.

    Below is what i can see using TextWrangler.

    Any advice would be appreciated!

    Thanks

    forrest

    <!DOCTYPE html PUBLIC “-//W3C//DTD XHTML 1.0 Transitional//EN” “http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd”&gt;
    <html xmlns=”http://www.w3.org/1999/xhtml”&gt;

    <head profile=”http://gmpg.org/xfn/11″&gt;
    <meta http-equiv=”Content-Type” content=”<?php bloginfo(‘html_type’); ?>; charset=<?php bloginfo(‘charset’); ?>” />

    <title><?php bloginfo(‘name’); ?> <?php if ( is_single() ) { ?> » Blog Archive <?php } ?> <?php wp_title(); ?></title>

    <meta name=”generator” content=”WordPress <?php bloginfo(‘version’); ?>” /> <!– leave this for stats –>

    <link rel=”stylesheet” href=”<?php bloginfo(‘stylesheet_url’); ?>” type=”text/css” media=”screen” />
    <link rel=”alternate” type=”application/rss+xml” title=”<?php bloginfo(‘name’); ?> RSS Feed” href=”<?php bloginfo(‘rss2_url’); ?>” />
    <link rel=”pingback” href=”<?php bloginfo(‘pingback_url’); ?>” />

    <style type=”text/css” media=”screen”>

    <?php
    // Checks to see whether it needs a sidebar or not
    if ( !$withcomments && !is_single() ) {
    ?>
    #page { background: url(“<?php bloginfo(‘stylesheet_directory’); ?>/images/kubrickbg.jpg”) repeat-y top; border: none; }
    <?php } else { // No sidebar ?>
    #page { background: url(“<?php bloginfo(‘stylesheet_directory’); ?>/images/kubrickbgwide.jpg”) repeat-y top; border: none; }
    <?php } ?>

    </style>

    <?php wp_head(); ?>
    </head>
    <body>
    <div id=”page”>

    <div id=”header”>
    <div id=”headerimg”>
    <h1>/”><?php bloginfo(‘name’); ?></h1>
    <div class=”description”><?php bloginfo(‘description’); ?></div>
    </div>
    </div>
    <hr />

Viewing 4 replies - 1 through 4 (of 4 total)
  • The topic ‘Favicons’ is closed to new replies.