I'm struggling to align my footer navigation inline with my footer title. Check out this code snippet to see what I've tried so far: https://jsfiddle.net/nkzsufov/
I experimented with using absolute and relative positioning:
.footerNav {
margin-top: 35px;
font-size: 1.5em;
font-family: Oswald;
float: left;
position: absolute;
}
I also applied float: left;
to both the footerNav
and footerNav li
.
What am I missing? Any suggestions?