Good morning!
I have noticed on the /about page on mobile (iPhone 13 Pro, Google Chrome, but this shouldn’t make a difference)
This may be by design and is unfixable, however, just putting something here
3 Likes
Can reproduce on Android A14, Chrome.
I think the reason is that that is an image, and won’t be able to wrap. Likely not intended.
3 Likes
Heliosurge
(Dan DeMontmorency)
September 2, 2024, 1:42am
5
The new about banner ATM is more configured for Desktop.
Add this to your mobile CSS in a custom TC.
.about__banner {
width: calc(120%);
max-width: 392px;
margin-left: -0.50em;
padding-bottom: 0.5em;
}
Topic on new about page here
We’ve been working on redesigning the /about page in Discourse and we’re finally ready to make it available to try it out. If you’re logged in to Meta, you can see it right here by heading to /about . Here’s a screenshot:
[image]
Notable additions
Banner image at the top of the page
Extended description that supports HTML/markdown
2-columns layout to reduce the amount of white space on wide screens
Expandable/collapsible lists of admins and moderators
Visitors and EU visitors sta…
2 Likes
Osama
September 2, 2024, 11:13pm
6
This should fix the problem:
discourse:main
← discourse:ux/about-banner-adjustments
opened 11:06PM - 02 Sep 24 UTC
Before:
<img src="https://github.com/user-attachments/assets/5f57fd2f-4b43-4e… b4-b8b8-4ae2b41f1a1a" width=500>
<img src="https://github.com/user-attachments/assets/97c0e74e-d4a9-481e-9fa5-ae90c1e86576" width=300>
After:
<img src="https://github.com/user-attachments/assets/92a8f660-170b-480b-9338-daa9c8cef073" width=500>
<img src="https://github.com/user-attachments/assets/2241161a-c343-41a4-8bed-758de19ac0dd" width=300>
We may add support for uploading a different image with different dimensions for mobile, but for now the PR above should improve the situation a lot on mobile.
3 Likes
Hmm… it is mostly fixed, but not fully.
Osama
September 3, 2024, 10:05am
8
Hmmm it looks ok on my phone (iPhone 15 Pro):
What is your device and browser?
Yeah, looks good for me on iPhone 13 Pro/Chrome
Osama
September 5, 2024, 3:00pm
11
@NateDhaliwal the issue you were seeing should now be fixed:
committed 07:29AM - 05 Sep 24 UTC
Static pages such as /about, /faqs, /tos etc. currently overflow horizontally on… some Android devices (reproducible on Samsung Galaxy A11). It seems like the `width: 100%` property on `.body-page` is what causing the problem, and removing it doesn't seem to break anything on the various devices that I've tested (desktop, iOS, Android).
3 Likes
Nice! I was wondering, should the text in the image be centered if on mobile?
1 Like