Making WordPress.org

Opened 14 months ago

Closed 4 months ago

Last modified 4 months ago

#6757 closed defect (bug) (fixed)

https://wordpress.org/about/privacy/ page design breaking issue in the mobile devices.

Reported by: upadalavipul's profile upadalavipul Owned by:
Milestone: Priority: low
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)

#1 @upadalavipul
14 months ago

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;
    }
}

#2 @nidhidhandhukiya
14 months 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 @coffee2code
4 months ago

  • Component changed from General to WordPress.org Site
  • Priority changed from normal to low
  • Resolution set to fixed
  • Status changed from new to closed

Thanks for the report! This was fixed 8 months ago in the parent theme in 28564c6 on GitHub.

#4 @coffee2code
4 months ago

#6846 was marked as a duplicate.

Note: See TracTickets for help on using tickets.