bonjour,
voila j'ai une page index avec une image de fond dans mon css
body {
background-image : url('img/background2.jpg');
background-repeat : no-repeat;
background-position:50% 50%;
background-color:black;
background-attachment: fixed;
}
dans ma page index j'ai des includes de pages html qui contienne des divs :
index.php :
<body>
<div id="banniere">Image</div>
<?php
//si pas de connexion en court
if(!$_SESSION['connexion']) {
include("page_connexion.php");
}
//sinon afficher la page général
else {
include("general.php");
}
//sinon afficher une autre page
?>
</body>
le soucis c'est que je ne vois pas le texte, il est sous l'image de fond.
comment remédier a se probleme
cordialement b-boy baki
Partager