Viewing 3 posts - 1 through 3 (of 3 total)
  • Author
    Posts
  • #587364

    Hello,
    I was wondering if it is possible to have two footer columns appear justified on the righthand side of the page? I don’t want to ‘fake-it’ with 4-5 columns (with blank content in the first 2-3) because it creates a lot of space in responsive mode. See attached for what I have now and what I’m looking to do…

    Thanks!

    #587369

    Hi lzevon!

    The easiest way is to “fake it”. You can place empty text widget into your widget areas and choose to hide them on mobile using following custom CSS code in Enfold theme options > General Styling > Quick CSS

    @media only screen and (max-width: 768px) {
    #footer .flex_column:nth-child(1) { display: none !important; }
    #footer .flex_column:nth-child(2) { display: none !important; }
    }

    Regards,
    Yigit

    #587376

    That works! Thx

Viewing 3 posts - 1 through 3 (of 3 total)
  • The topic ‘two footer columns right aligned’ is closed to new replies.