Code: Select all
@media (max-width: 850px) {
.postprofile { width: 28%; }
}
Code: Select all
@media (max-width: 850px) {
.postprofile { width: 28%; }
}
what is the fix then?Dan Stylez wrote: ↑Mon Jan 13, 2020 2:44 am A team member already knew about it and posted the css fix,
Code: Select all
@media (min-width: 850px) {
.postbody { width: 76%; }
}
@media (max-width: 850px) {
.postprofile { width: 28%; }
In 3.1.10 it was correct. Not since 3.2.0.
Any bug or problem should be reported to the tracker, so developers can know about the problem and work in a fix. This is how any development process works.Dan Stylez wrote: ↑Mon Jan 13, 2020 2:44 am This bug was pointed out right back at 3.2.0 as was the bug with the forum/topic icons not being positioned correctly in the RTL version on small screens.
A team member already knew about it and posted the css fix, but said I would have to create a bug report to get it fixed - I didn't bother as it seems pointless posting a bug report when a team member already knows about the bug and posted the fix.
Both issues still exist in 3.3.0 so it looks like they won't be fixed until someone is prepared to do something bloody bizarre... report a bug - which they already know exists.(my point is that if a team member knows of a bug - they could have fixed it - rather than ask the next person who spots it to report it just to get the fix process started)
The good thing about the style being rejected is that it shows that the validation team are now being more thorough in the checks they carry out - which is important for phpBB going forward, just a shame that it's not the fault of the style author.
Code: Select all
@media (min-width: 850px) {
.postbody { width: 76%; }
}
@media (max-width: 850px) {
.postprofile { width: 28%; }
}
Code: Select all
@media (min-width: 701px) and (max-width: 850px) {
.postbody { width: 76%; }
.postprofile { width: 22%; }
}
https://gs.statcounter.com/screen-resolution-stats/tablet/worldwide
@media (max-width: 850px) { .postprofile { width: 28%; }
- it looks correct everywhere in my styles. Or have I now missed something again.Code: Select all
@media (min-width: 850px)
.postbody {
width: 76%;
}
Code: Select all
@media (min-width: 851px)
.postbody {
width: 76%;
}
Hi!