How can I modify the navigation and hide 'quick link' in Dawn theme footer?

Hi all,

Is it possible to make the navigation in the footer go across the page instead of up and down? Also, how do I hide “quick link” word. It would look better without the quick link word being shown on website.

My website is www.PennsylvaniaParks.org

Thanks!

@Justin34 , I’m not sure if I’m understanding what you want to achieve, but you can try this:

  1. In your Shopify Admin go to: online store > themes > actions > edit code
  2. Find Asset > base.css and paste this at the bottom of the file:
@media (min-width: 750px){
.footer-block__details-content{
    display: flex;
    align-items: center;
    justify-content: center;
}

.footer__blocks-wrapper{
    display: flex;
    flex-direction: column;
}

.footer-block{
    width: 100% !important;
}

.footer-block *{
        text-align: center;
}
}

If it helps you please click on the “like” button and mark this answer as a solution!

Kind regards,
Diego