1. Advertising
    y u no do it?

    Advertising (learn more)

    Advertise virtually anything here, with CPM banner ads, CPM email ads and CPC contextual links. You can target relevant areas of the site and show ads based on geographical location of the user if you wish.

    Starts at just $1 per CPM or $0.10 per CPC.

How do I change the bookmark icon in Wordpress?

Discussion in 'WordPress' started by RB!, Jul 8, 2008.

  1. #1
    How do I change the bookmark icon in Wordpress?
     
    RB!, Jul 8, 2008 IP
  2. Krsto

    Krsto Peon

    Messages:
    57
    Likes Received:
    0
    Best Answers:
    0
    Trophy Points:
    0
    #2
    It's the favicon you mean... right?

    Add the following code <link rel="shortcut icon" href="favicon.ico"> anywhere between the <head> and </head> tags. You need to make a 16x16 pixel .ico file. It's easy, you can do it in Paint... And after that, upload it to the theme directory.
     
    Krsto, Jul 8, 2008 IP
  3. hmansfield

    hmansfield Guest

    Messages:
    7,904
    Likes Received:
    298
    Best Answers:
    0
    Trophy Points:
    280
    #3
    hmansfield, Jul 8, 2008 IP
  4. Sanma

    Sanma Active Member

    Messages:
    468
    Likes Received:
    8
    Best Answers:
    0
    Trophy Points:
    60
    #4

    True, but there's no need to add that line of code. It helps with IE6 if i'm not wrong, but for IE7, FF and opera, there's no need.

    And yeah, it'd suggest you to look in google for something like "favicon generator", it should bring you some results of different ways of making it ;)
     
    Sanma, Jul 8, 2008 IP
  5. RB!

    RB! Active Member

    Messages:
    216
    Likes Received:
    1
    Best Answers:
    0
    Trophy Points:
    53
    #5
    where exactly do i upload the favicon to
     
    RB!, Jul 8, 2008 IP
  6. deluxdon

    deluxdon Catch Me If You Can...!!!™ Staff

    Messages:
    25,480
    Likes Received:
    1,943
    Best Answers:
    32
    Trophy Points:
    480
    #6
    Under root folder. Where your main index.php etc.

    DON.
     
    deluxdon, Jul 8, 2008 IP
  7. RB!

    RB! Active Member

    Messages:
    216
    Likes Received:
    1
    Best Answers:
    0
    Trophy Points:
    53
    #7
    i put the <link rel="shortcut icon" href="favicon.ico"> inbetween the head tags, and put the .ico in the root folder where all the files are for that theme, its still not showing up
     
    RB!, Jul 9, 2008 IP
  8. Ian Eltringham

    Ian Eltringham Peon

    Messages:
    65
    Likes Received:
    3
    Best Answers:
    0
    Trophy Points:
    0
    #8
    Have you tried clearing your cache?
     
    Ian Eltringham, Jul 9, 2008 IP
  9. deluxdon

    deluxdon Catch Me If You Can...!!!™ Staff

    Messages:
    25,480
    Likes Received:
    1,943
    Best Answers:
    32
    Trophy Points:
    480
    #9
    Where you have added this code (in which file) :confused:

    You need to add this code in header.php in your template just before </head>. Like this.

    <link rel="shortcut icon" href="/favicon.ico">
    </head>

    I am using it at my blog without having any issue. Check it Travel with ease blog

    DON.
     
    deluxdon, Jul 9, 2008 IP
  10. asterix

    asterix Well-Known Member

    Messages:
    1,095
    Likes Received:
    97
    Best Answers:
    0
    Trophy Points:
    165
    #10
    asterix, Jul 9, 2008 IP
    RB! likes this.
  11. mnvamsi

    mnvamsi Active Member

    Messages:
    206
    Likes Received:
    2
    Best Answers:
    0
    Trophy Points:
    53
    #11
    using link tag in Html.
    you can find the tutorial for link tag out there online.
     
    mnvamsi, Jul 9, 2008 IP
  12. RB!

    RB! Active Member

    Messages:
    216
    Likes Received:
    1
    Best Answers:
    0
    Trophy Points:
    53
    #12
    i got it to work now using this code instead..
    <link rel="shortcut icon" href="<?php bloginfo('template_directory'); ?>/favicon.ico" />

    thx to all
     
    RB!, Jul 9, 2008 IP
  13. Swamy

    Swamy Peon

    Messages:
    11
    Likes Received:
    0
    Best Answers:
    0
    Trophy Points:
    0
    #13
    Yep, the following code is correct.

    <link rel="shortcut icon" href="<?php bloginfo('template_directory'); ?>/favicon.ico" />

    If you want to download favicon plugin, you can download it from my blog post (http://money-making-tools.tipsonclicks.com/wordpress/download-wordpress-favicon-plugin).
     
    Swamy, Jul 9, 2008 IP