Accused Username:
@ZevZero
Bug:
BREAKING my phone forum screenEvidence:
Additional Information:
NONE
it’s a joke obviousally but there is a bug
Thread Tools
Thread Tools
-
-
Frostystorm1 BulletClub ︻╦╤─ | Former Senior Super ModeratorBuilder ⛰️ Ex-Tycoon ⚜️⚜️⚜️ Premium Upgrade
Thread Moved to Help & Support / Errors & Bugs
-
DonaldTrump9 Former President of ECCBuilder ⛰️ Ex-EcoMaster ⚜️⚜️⚜️⚜️ Premium Upgrade
sorry
but this is not a glitch-
Winner x 2 - List
-
-
-
DonaldTrump9 Former President of ECCBuilder ⛰️ Ex-EcoMaster ⚜️⚜️⚜️⚜️ Premium Upgrade
-
Frostystorm1 BulletClub ︻╦╤─ | Former Senior Super ModeratorBuilder ⛰️ Ex-Tycoon ⚜️⚜️⚜️ Premium Upgrade
Can we please keep the replies on topic? As this is still in the help and support/bugs section, all replies to this thread should pertain to the original bug. Thank you :)
-
Rip :(
EDIT: When I thought it was fixed it was just because I tested it but I used multiple words, what it's doing right now is that it's only moving full words to the bottom row if you get what I mean. -
TakiTakiTaki BuilderBuilder ⛰️ Ex-President ⚒️⚒️
This is a CSS issue that can be easily replicated by dragging any desktop browser window down to the size (specifically width) of a phone screen.
The issue is div.medals being forced to a zero width, therefore making it a really tall column of medals.
Assuming freedom to edit or add CSS (I have no experience with Xenforo), this would be an easy fix:
Code:@media (max-width: 610px) { .Responsive .messageUserBlock h3.userText .uix_userTextInner { max-width: 100%; } .Responsive.hasFlexbox .messageUserBlock h3.userText { min-width: 0; } }
The max-width will keep the userText from expanding outside its designated box.
The selectors are just selectors I found that already have some properties in them. I don't think this level of specificity is needed.
EDIT: I haven't thoroughly tested this, seemed to work on Chrome and Firefox