#6757 closed defect (bug) (fixed)
https://wordpress.org/about/privacy/ page design breaking issue in the mobile devices.
| Reported by: | upadalavipul | Owned by: | |
|---|---|---|---|
| Priority: | low | Milestone: | |
| Component: | WordPress.org Site | Keywords: | |
| Cc: |
Description
I reviewed the above page on my mobile devices and found this page design is breaking. please check the below-attached video for a better understanding issue.
Video URL: https://share.cleanshot.com/9PnbxsQPvQmbcZ32Bgxz
Page URL: https://wordpress.org/about/privacy/
Change History (4)
#2
@
4 years ago
Hello @upadalavipul
I have test this solution this can solve the issue but If we use this solution that can break the whole word also.
If we provide below solution that can break the word not a single character.
@media screen and ( max-width: 420px ) {
.is-layout-constrained ol li {
word-break: break-word;
}
}
#3
@
3 years ago
- Component General → WordPress.org Site
- Priority normal → low
- Resolution → fixed
- Status new → closed
Thanks for the report! This was fixed 8 months ago in the parent theme in 28564c6 on GitHub.
Note:
See TracTickets
for help on using tickets.
![(please configure the [header_logo] section in trac.ini)](/chrome/site/your_project_logo.png)
Need to add the below CSS for the above issue.
CSS:
@media screen and ( max-width: 420px ) { .is-layout-constrained ol li { word-break: break-all; } }