Help with footer misaligned in flexbox

1

I would like a help with my footer , which is getting totally misaligned, I already tried clear: both , but without success, I would like some help to correct this error. the original footer code is this: link

and my current project is this: link

Notice that it gets totally deformed, where can the error be?

    
asked by anonymous 17.01.2017 / 14:46

1 answer

2

First, your tag: <a href="#contato"> </a> is missing a >

Second, your class .footer-infos has to look like this:

display:flex;
flex-direction:column;
    
17.01.2017 / 14:59