<?php
include( "./include/style.php" );
echo "
<title>";
if ( $page['name'] != "" )
{
echo $page['name'];
}
else
{
echo $page['file'];
}
echo "</title>";
?>
comment mettre en souligné la catégorie et entre parenthes le 8/29
Hors ligne
dans photo.php (version 1.1) ligne 177, remplace :
$intitule_cat = $page['cat_name'];
par
$intitule_cat = "<span style="text-decoration:underline;">".$page['cat_name']."</span>";
et dans photo.php (version 1.1) ligne 183, remplace :
$intitule_titre = $intitule_cat." - ".$n."/".$page['cat_nb_images']."<br />";
par
$intitule_titre = $intitule_cat." - (".$n."/".$page['cat_nb_images'].")<br />";
Hors ligne