Skip to content

Instantly share code, notes, and snippets.

@tristanmason
Last active September 12, 2020 20:53
Show Gist options
  • Save tristanmason/ca9b87cacbfb92505c43f8b8429eb392 to your computer and use it in GitHub Desktop.
Save tristanmason/ca9b87cacbfb92505c43f8b8429eb392 to your computer and use it in GitHub Desktop.
Make the footer widgets on Genesis Navigation Pro theme horizontal
/* Fix footer widget area */
.site-footer .wrap {
display: flex;
flex-direction: column-reverse;
}
.site-footer .footer-widgets {
display: flex;
flex-direction: row;
flex-wrap: wrap;
float: none;
max-width: unset;
}
@media screen and (min-width: 500px) {
.site-footer .footer-widgets {
flex-wrap: nowrap;
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment