Okay
  Public Ticket #1376874
3 Column Breakpoint at 1200 px
Closed

Comments

  •  1
    Massimo started the conversation

    Hello.

    is there a more elegant solution for a 3 column footer on tablet devices with 1200 px width as breaking in 2 columns upside and the third downside?

    See screenshot attched.

    Thanks for help. Massimo

  •  9,017
    Tahir replied

    Hey Again,

    The widths can be adjusted via CSS .

    Add this into the Custom CSS box located in your Salient Options panel (Make Sure there are no red cross in the Box) :

    @media only screen and (max-width: 1000px) and (min-width: 690px) {
        #footer-widgets .container .col {
            width: 32% !important;
        }
    }
    /* OR */
    @media only screen and (max-width: 1000px) and (min-width: 690px) {
        #footer-widgets .container .col {
            width: 100% !important;
        }
    }

    Thanks



    ThemeNectar Support Team 

  •  1
    Massimo replied

    Thanks a lot, Tahir.
    This helps.