Problème d'affichage avec Windows 7

Problème d'affichage avec Windows 7 - HTML/CSS - Programmation

Marsh Posté le 29-09-2011 à 10:11:09    

Bonjour,
 
J'ai développé mon site, et bien que tout marche sans problèmes sur une majorité de PC, sous win7 ie8 ou ff j'ai le bug suivant:
 
http://img718.imageshack.us/img718/3892/sansrejc.jpg
 
alors que normalement ça devrait etre:
 
http://monimag.eu/upload/821/abse.png
 
Niveau code j'ai ça:
 

Code :
  1. <div id="gallery">
  2. <?php
  3.   for ($i=0;$i<6;$i++)
  4.   {
  5.     echo'<div id="miniature_line">';
  6.     for ($j=1;$j<=6;$j++)
  7.       {
  8.          $k=$i*6+$j;
  9.          if ($k<=$_SESSION['table_size'])
  10.          {
  11. $l=(string)$k;
  12. $k=$k-1;
  13. echo '<div id="miniature" style="background:url(http://absephotography.com/th_'. $_SESSION['photo_path'][$k] .') center center no-repeat" > <p><a href=gallery.php?browse=' . $l . '> <img src="empty.gif"> </a></p></div>';
  14.          }
  15.        }
  16.        echo'</div>';
  17.      }
  18.    ?>
  19. </div>


 
et le css associé

Code :
  1. #miniature_line
  2. {
  3. height: 100px;
  4. width: 600px;
  5. margin: 0;
  6. padding: 0;
  7. }
  8. #miniature
  9. {
  10. height:100px;
  11. width:100px;
  12. float:left;
  13. margin: 0;
  14. padding: 0;
  15. }
  16. #miniature a
  17. {
  18. border:none;
  19. background-color:transparent;
  20. }
  21. #miniature a:hover
  22. {
  23. background-color:transparent;
  24. }
  25. #gallery
  26. {
  27. width: 600px;
  28. height: 600px;
  29. margin: 0;
  30. padding: 0;
  31. margin-left: 355px; /* Une marge à gauche pour pousser le corps, afin qu'il ne passe plus sous le menu */
  32. }


 
Je veux bien savoir pourquoi ça se comporte comme ça, si quelqu'un sait :jap:
 
Merci!


---------------
ABSEPhotography.com/Gal HFR/Instagram/Facebook  
Reply

Marsh Posté le 29-09-2011 à 10:11:09   

Reply

Marsh Posté le 29-09-2011 à 10:40:58    

ah oui et l'adresse du site :/
 
www.absephotography.com


---------------
ABSEPhotography.com/Gal HFR/Instagram/Facebook  
Reply

Sujets relatifs:

Leave a Replay

Make sure you enter the(*)required information where indicate.HTML code is not allowed