Site logo

[Resolved] Footer widgets 2 to 1 column responsive break point

Home Forums Support [Resolved] Footer widgets 2 to 1 column responsive break point

Home Forums Support Footer widgets 2 to 1 column responsive break point

  • This topic has 5 replies, 2 voices, and was last updated 10 years ago by Tom.
Viewing 6 posts - 1 through 6 (of 6 total)
  • Author
    Posts
  • #180262
    Pete

    Hi Tom,

    I have 2 footer widgets arranged in 2 columns as per the theme core settings. At ?768px the 2 columns break into 1 column (responsive). What media css do I need to keep the 2 columns until 900px?

    Thanks,

    Pete.

    #180293
    Tom
    Lead Developer
    Lead Developer

    It should keep two columns until 768px, so you would still have two columns at 900px?

    #180350
    Pete

    Exactly! Now let’s try that again with what I really meant… 500px. Derrrrrrrr.

    #180387
    Tom
    Lead Developer
    Lead Developer

    Try this:

    @media (max-width: 768px) {
        .inside-footer-widgets > .grid-50 {
            width: 50%;
            float: left;
        }
    }
    
    @media (max-width: 500px) {
        .inside-footer-widgets > .grid-50 {
            width: 100%;
            float: none;
        }
    }
    #180393
    Pete

    Thanks Tom works a treat 🙂

    ps. just read the great you had a baby, welcome to the best years of your life!

    #180394
    Tom
    Lead Developer
    Lead Developer

    Thanks! I’m so tired.

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