chrisnvidia a écrit: 26 févr. 2022, 18:01
Pour info la seule modification faite c'est de supprimer un ancien partenaire .
Je vois !
En testant avec le style prosilver aucun problème pour supprimer les cookies. Avec ton style il y a bel et bien un problème, et ce problème vient du fichier
partner.html
Voilà d'où vennait le problème :
Code: Tout sélectionner
<marquee direction="left" scrollamount="4" onmouseover='this.stop()' onmouseout='this.start()'>
<a href="https://caforum.fr/forum"><img src="/images/partner/caforum.png" padding="3px" width="200" height="50" alt="Partenaire" title="Forum d'entraide phpBB"/></a><a href="https://informaticsclubs.fr"><img src="/images/partner/informaticsclubs.png" padding="3px" width="200" height="50" alt="Partenaire" title="Forum d'entraide informatique"/></a>
Dans ce fichier il manquait la balise de fermeture
</marquee>, je l'ai rajouté :
Code: Tout sélectionner
<marquee direction="left" scrollamount="4" onmouseover='this.stop()' onmouseout='this.start()'>
<a href="https://caforum.fr/forum"><img src="/images/partner/caforum.png" padding="3px" width="200" height="50" alt="Partenaire" title="Forum d'entraide phpBB"/></a><a href="https://informaticsclubs.fr"><img src="/images/partner/informaticsclubs.png" padding="3px" width="200" height="50" alt="Partenaire" title="Forum d'entraide informatique"/></a>
</marquee>
Confirme moi que tout est OK pour toi ?