[Bug User Complaint] ZevZero

Discussion in 'Help & Support / Errors & Bugs' started by Drewbo_, Oct 11, 2017.

  1. Drewbo_

    Drewbo_ Guest

    Ratings:
    +0
    Accused Username:
    @ZevZero
    Bug:
    BREAKING my phone forum screen
    Evidence:
    Additional Information:
    NONE

    it’s a joke obviousally but there is a bug
     
    #1 Drewbo_, Oct 11, 2017
    Last edited by a moderator: Oct 11, 2017
  2. Frostystorm1

    Frostystorm1 BulletClub ︻╦╤─ | Former Senior Super Moderator
    Builder ⛰️ Ex-Tycoon ⚜️⚜️⚜️ Premium Upgrade

    Joined:
    Sep 28, 2016
    Messages:
    806
    Trophy Points:
    46,160
    Gender:
    Male
    Ratings:
    +1,095
    Thread Moved to Help & Support / Errors & Bugs
     
  3. DonaldTrump9

    DonaldTrump9 Former President of ECC
    Builder ⛰️ Ex-EcoMaster ⚜️⚜️⚜️⚜️ Premium Upgrade

    Joined:
    Jun 21, 2016
    Messages:
    1,075
    Trophy Points:
    58,660
    Ratings:
    +2,857
    sorry

    but this is not a glitch
     
    #3 DonaldTrump9, Oct 11, 2017
    Last edited: Oct 11, 2017
  4. andrewkm

    Founder Premium Upgrade

    Joined:
    Apr 5, 2011
    Messages:
    20,679
    Trophy Points:
    102,160
    Ratings:
    +15,143
  5. Scamazon

    Scamazon monkey
    Builder ⛰️ Ex-President ⚒️⚒️ Premium Upgrade

    Joined:
    Jul 1, 2017
    Messages:
    666
    Trophy Points:
    27,090
    Gender:
    Male
    EcoDollars:
    $0
    Ratings:
    +2,157
    It does that with my phone as well, which is the OnePlus 3T
     
  6. Drewbo_

    Drewbo_ Guest

    Ratings:
    +0
    iphone 6s using google chrome version 61.0.3163.73
     
    #6 Drewbo_, Oct 17, 2017
    Last edited by a moderator: Oct 17, 2017
  7. DonaldTrump9

    DonaldTrump9 Former President of ECC
    Builder ⛰️ Ex-EcoMaster ⚜️⚜️⚜️⚜️ Premium Upgrade

    Joined:
    Jun 21, 2016
    Messages:
    1,075
    Trophy Points:
    58,660
    Ratings:
    +2,857
    It does it on safari too
     
    • Winner Winner x 2
    • Agree Agree x 1
    • List
  8. Frostystorm1

    Frostystorm1 BulletClub ︻╦╤─ | Former Senior Super Moderator
    Builder ⛰️ Ex-Tycoon ⚜️⚜️⚜️ Premium Upgrade

    Joined:
    Sep 28, 2016
    Messages:
    806
    Trophy Points:
    46,160
    Gender:
    Male
    Ratings:
    +1,095
    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 :)
     
    #8 Frostystorm1, Nov 13, 2017
    Last edited: Nov 13, 2017
  9. Scamazon

    Scamazon monkey
    Builder ⛰️ Ex-President ⚒️⚒️ Premium Upgrade

    Joined:
    Jul 1, 2017
    Messages:
    666
    Trophy Points:
    27,090
    Gender:
    Male
    EcoDollars:
    $0
    Ratings:
    +2,157
    [​IMG]
     
    • Agree Agree x 2
    • Potato Potato x 1
    • List
  10. Scamazon

    Scamazon monkey
    Builder ⛰️ Ex-President ⚒️⚒️ Premium Upgrade

    Joined:
    Jul 1, 2017
    Messages:
    666
    Trophy Points:
    27,090
    Gender:
    Male
    EcoDollars:
    $0
    Ratings:
    +2,157
    Ok it's fixed now
     
  11. andrewkm

    Founder Premium Upgrade

    Joined:
    Apr 5, 2011
    Messages:
    20,679
    Trophy Points:
    102,160
    Ratings:
    +15,143
    Can you confirm it is still fixed?

    @Drewbo_ as well please.
     
    #11 andrewkm, Jan 19, 2018
    Last edited: Jan 19, 2018
  12. Scamazon

    Scamazon monkey
    Builder ⛰️ Ex-President ⚒️⚒️ Premium Upgrade

    Joined:
    Jul 1, 2017
    Messages:
    666
    Trophy Points:
    27,090
    Gender:
    Male
    EcoDollars:
    $0
    Ratings:
    +2,157
    [​IMG]
    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.
     
    #12 Scamazon, Jan 19, 2018
    Last edited: Jan 19, 2018
  13. Scamazon

    Scamazon monkey
    Builder ⛰️ Ex-President ⚒️⚒️ Premium Upgrade

    Joined:
    Jul 1, 2017
    Messages:
    666
    Trophy Points:
    27,090
    Gender:
    Male
    EcoDollars:
    $0
    Ratings:
    +2,157
  14. TakiTakiTaki

    TakiTakiTaki Builder
    Builder ⛰️ Ex-President ⚒️⚒️

    Joined:
    Jan 6, 2018
    Messages:
    7
    Trophy Points:
    5,360
    Ratings:
    +5
    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 min-width will allow div.medals to expand (or rather the userText to shrink) to a normal size.
    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
     
    #14 TakiTakiTaki, Feb 15, 2018
    Last edited: Feb 15, 2018
  15. Drewbo_

    Drewbo_ Guest

    Ratings:
    +0
    • Agree Agree x 1
    • Informative Informative x 1
    • List