[Support request] Mobile design Words Overflowing

Home Forums Support [Support request] Mobile design Words Overflowing

Home Forums Support Mobile design Words Overflowing

Viewing 4 posts - 1 through 4 (of 4 total)
  • Author
    Posts
  • #2330041
    Dikson

    Hi,

    This page on my site is displaying correctly on my desktop version Event page, However when I view on mobile the words are overflowing, how can I fix this Mobile version

    Thank you

    #2330049
    Fernando
    Customer Support

    Hi Dikson,

    I can’t see anything overflowing. Are you referring to the wrapping of the text?

    It seems you’re using a third party plugin for the Grids. It would be best to reach out to the creator of this for support.

    Alternatively, If you try adding this in Additional CSS, the grids should align to one column:

    @media (max-width: 768px) {
        .wpem-ticket-info-flex {
            flex-direction: column;
        }
    }
    #2330055
    Dikson

    Thank you, however now there is a big space beneat the amountnew mobile design

    #2330066
    Fernando
    Customer Support

    Try updating the code to this:

    @media (max-width: 768px) {
        .wpem-ticket-info-flex {
            flex-direction: column;
        }
    
        .wpem-ticket-info-flex .wpem-ticket-quantity {
            flex: unset !important;
        }
    }

    However, as mentioned, it would be best to reach out to the support of this plugin as this is out of our scope, and not sure if this is the best approach.

Viewing 4 posts - 1 through 4 (of 4 total)
  • You must be logged in to reply to this topic.