icon (.ico) for the address bar within Zenphoto?

Is there an easy way to get the zenphoto part of my website to display an icon (.ico) file to the left of the address bar?

Comments

  • Hi,

    You could add the following two lines to your theme index.php file, in the html head section.

    <head>
    ...
    ...
    <link rel="shortcut icon" href="<?php echo FULLWEBPATH ; ?>/favicon.ico" type="image/x-icon" />
    <link rel="icon" href="<?php echo FULLWEBPATH ; ?>/favicon.ico" type="image/x-icon" />
    </head>

    And then place your favicon.ico in your zenphoto root directory

    This works for me :-)

    r:martin
  • Hey thanks a ton Martin :)

    -Ben
Sign In or Register to comment.