ecolopop : logo feature
Posted: Fri 29. Oct 2004, 14:53
I have put up one interesting feature on that site : change top logo depending on structure level. If the logo for a structure level is not present, displays default logo
example, all these pages use the same template
http://ecolopop.free.fr
http://ecolopop.free.fr/index.php?wildlife
http://ecolopop.free.fr/index.php?_bgk
here is the code snippet
do you guys like that ?
example, all these pages use the same template
http://ecolopop.free.fr
http://ecolopop.free.fr/index.php?wildlife
http://ecolopop.free.fr/index.php?_bgk
here is the code snippet
Code: Select all
[PHP]
$lid= $GLOBALS['content']['cat_id'];
$path = "img/ecolopop/tl/";
$l="";
$limggif= $path . "l" . $lid . ".gif";
$limgjpg= $path . "l" . $lid . ".jpg";
if (is_file($limgjpg)) $l=$limgjpg;
if (is_file($limggif)) $l=$limggif;
if ($l=="") $l=$path . "l.gif";
echo "<a href=/><img src=" . $l . " border=0 width=356 height=85></a>";
[/PHP]