Viewing 4 posts - 1 through 4 (of 4 total)
  • Author
    Posts
  • #399104

    Hello Kriesi team –
    I am quite happy with the way my homepage looks and is laid out on larger resolutions (desktop), but when it goes into responsive mode I’d like to hide two of the three footer sections. Could you help me with the code for this please? (I’ve searched here but couldn’t find the question in any other topics)

    Website: TruthBeToldMedia.com
    Issue: In responsive mode, hide Twitter (footer 1) and Facebook (footer 3) feeds, leaving only the login (footer 2)

    Thanks in advance for any help you can give.

    #399162

    Hey!

    Try with this:

    @media only screen and (max-width: 767px) {
        #footer .container > .flex_column:nth-child(1) {
            display: none;
        }
        #footer .container > .flex_column:nth-child(3) {
            display: none;
        }
    }

    Cheers! 
    Josue

    #399189

    Thanks very much for your timely reply Josue. Your solution worked perfectly.

    Job well done!

    #399231

    You are welcome, always glad to help :)

    Regards,
    Josue

Viewing 4 posts - 1 through 4 (of 4 total)
  • The topic ‘Media Query: if responsive, then hide footer’ is closed to new replies.