[Resolved] Column Mobile-grid Not Working

Home Forums Support [Resolved] Column Mobile-grid Not Working

Home Forums Support Column Mobile-grid Not Working

  • This topic has 1 reply, 2 voices, and was last updated 4 years ago by Tom.
Viewing 2 posts - 1 through 2 (of 2 total)
  • Author
    Posts
  • #1235115
    fabiosilva

    Hi,

    I’m try using this code:

    
    <div class="grid-50 tablet-grid-50 mobile-grid-100 first-column">
    content column 1
    </div>
    
    <div class="grid-50 tablet-grid-50 mobile-grid-100 second-column">
    content column2
    </div>

    But the mobile full width (100%) is being ignored, and not work (on mobile, as showing 2 columns). It never happened to me. I’m doing something wrong?

    Thank you

    #1235685
    Tom
    Lead Developer
    Lead Developer

    Hi there,

    You’re adding flexbox to the containers which is preventing the elements from wrapping.

    Try this:

    #section-adn > div {
        flex-wrap: wrap;
    }
Viewing 2 posts - 1 through 2 (of 2 total)
  • You must be logged in to reply to this topic.