Viewing 2 posts - 1 through 2 (of 2 total)
  • Author
    Posts
  • #1300676

    Hi,

    ich have a footer with 3 cols: 1/5, 2/5, 2/5
    When it gets to a breakpoint (viewport) I want 1/5,1/5, 3/5?

    How to manage this?

    Best Regards tim

    #1300789

    Hey Tim,

    Thanks for contacting us!

    Please add following code to Quick CSS field in Enfold theme options > General Styling tab and adjust the breakpoint

    
    @media only screen and (max-width: 767px) { 
    #footer .flex_column:nth-child(2) {
        width: 15.2%;
    }
    #footer .flex_column:nth-child(3) {
        width: 57.599999999999994%;
    }
    }
    

    Best regards,
    Yigit

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