2 pièce(s) jointe(s)
problème d'affichage sous ie
j'ai un menu style onglet. où j'affiche une image, un texte, une image.
mais quand je suis sur ie voila ce que ca donne.
alors que sous netscape ca se passe bien
et j'arrive pas a voir pourkoi ca marche pas.
Voici le code
Code:
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27
|
<table cellpadding="0" cellspacing="0">
<tr>
<?php
tep_db_connect();
$listing_query = tep_db_query('select * from equipement');
while ($listing = tep_db_fetch_array($listing_query)) {
?>
<td>
<?php $list_contents = drawMenuClass($listing['id_equipement'],MENU_EQUIPEMENT);?>
<a href="affaire.php?affaire=<?php echo $listing['id_equipement'];?>" class="liensMenu"><?php echo $list_contents['image_left']; ?></a>
</td>
<td <?php echo $list_contents['classe']; ?> align="center">
<a href="<?php echo FILENAME_EQUIPEMENT.'?'.GET_URL_AFFAIRE_EQUIPEMENT.'='.$listing['id_equipement'];?>" <?php echo $list_contents['liens']; ?>><?php echo $listing['libelle_equipement'];?></a>
</td>
<td>
<a href="<?php echo FILENAME_EQUIPEMENT.'?'.GET_URL_AFFAIRE_EQUIPEMENT.'='.$listing['id_equipement'];?>" class="liensMenu"><?php echo $list_contents['image_right']; ?></a>
</td>
<td width="1" class="Style1">
</td>
<?php
}
tep_db_close();
}
?>
</tr>
</table> |