phpBB 3.3.1
Lorsque votre navigateur est configuré pour effectuer un zoom arrière de 90% ou moins, vous obtiendrez une grande marge sur la page du sujet de vue entre chaque publication.
Cela est dû au calcul CSS dans /styles/prosilver/theme/responsive.css :
Code: Tout sélectionner
@media (min-width: 701px) {
.postbody {
/** deduct postprofile width (including border width, margin and padding) and postbody margin and padding */
width: calc(100% - 200px - 1px - 16px);
margin-right: 16px;
}
.postprofile {
width: 200px;
}
}
La "largeur de la bordure" est définie sur 1 px, mais ce n'est pas correct lors d'un zoom arrière.
Remplacer le code par celui-ci pour régler le problème :
Code: Tout sélectionner
@media (min-width: 701px) {
.postbody {
width: calc(100% - 200px - 1px - 1px);
}
.postprofile {
width: 200px;
}
}
Source