Bonsoir tout le monde
Je cherche comment attribuer aux liens de cette zone :
une couleur rouge lorsqu'ils sont activés (on garde la couleur noire sur le lien par défaut).
-----------------------------------------------
code complet du fichier en question :
Pouvez vous m'aider ssvp ? Merci.
Modifié par Zucchero (12 Sep 2006 - 00:23)
Je cherche comment attribuer aux liens de cette zone :
$info_box_contents = array();
$info_box_contents[] = array('text' => $categories_string.= '<a class="TypBlack" href="' . tep_href_link(FILENAME_PRODUCTS_NEW, '', 'NONSSL') . '">' . BOX_HEADING_WHATS_NEW . '</a> l <a href="' . tep_href_link(FILENAME_SPECIALS, '', 'NONSSL') . '">' . BOX_HEADING_SPECIALS . '</a> l <a href="' . tep_href_link(FILENAME_WHY, '', 'NONSSL') . '">' . BOX_WHY . '</a> l</center>');
new infoBox($info_box_contents);
une couleur rouge lorsqu'ils sont activés (on garde la couleur noire sur le lien par défaut).
-----------------------------------------------
code complet du fichier en question :
<?php
global $HTTP_GET_VARS;
?>
<!-- top_categories //-->
<tr>
<td>
<?php
$status = tep_db_num_rows(tep_db_query('describe categories status'));
$query = "select c.categories_id, cd.categories_name, c.parent_id
from " . TABLE_CATEGORIES . " c, " . TABLE_CATEGORIES_DESCRIPTION . " cd
where c.categories_id = cd.categories_id
and c.parent_id=0";
if ($status >0)
$query.= " and c.status = '1'";
$query.= " and cd.language_id='" . $languages_id ."'
order by sort_order, cd.categories_name";
$categories_query = tep_db_query($query);
// Build categories string
$info_box_contents = array();
$info_box_contents[] = array('text' => BOX_HEADING_CATEGORIES);
$categories_string .= '<center>l <a class="TypBlack" href="' . tep_href_link(FILENAME_DEFAULT) . '"><b>' . ' ' . '</b><a/>';
while ($row = tep_db_fetch_array($categories_query)) {
$categories_string .= '<a class="TypBlack" href="' . tep_href_link(FILENAME_DEFAULT, 'cPath=' . $row['categories_id']) . '">';
list($current) = explode('_', $HTTP_GET_VARS['cPath']);
if ($row['categories_id'] == $current) $categories_string .= '<b><font color="#e56500">';
$categories_string .= $row['categories_name'];
if ($row['categories_id'] == $current) $categories_string .= '</font color></b>';
$categories_string .= '</a>';
$categories_string .= ' l ';
}
$info_box_contents = array();
$info_box_contents[] = array('text' => $categories_string.= '<a class="TypBlack" href="' . tep_href_link(FILENAME_PRODUCTS_NEW, '', 'NONSSL') . '">' . BOX_HEADING_WHATS_NEW . '</a> l <a href="' . tep_href_link(FILENAME_SPECIALS, '', 'NONSSL') . '">' . BOX_HEADING_SPECIALS . '</a> l <a href="' . tep_href_link(FILENAME_WHY, '', 'NONSSL') . '">' . BOX_WHY . '</a> l</center>');
new infoBox($info_box_contents);
?>
</td>
</tr>
<!-- top_categories_eof //-->
Pouvez vous m'aider ssvp ? Merci.
Modifié par Zucchero (12 Sep 2006 - 00:23)