I want my social media links to be in the same row as the policy links

I want my social media links to be in the same row as the policy links, im using dawn theme, i would like them to look like this

image

How You Can Do It

  1. Edit footer.liquid

    • Go to Online Store > Themes > Edit code.

    • Open sections/footer.liquid.

    • Find the block for policy links and the block for social media icons.

    • Move the social media snippet into the same <div> or <ul> container as the policies.

Example (simplified):

<div class="footer-bottom">
  <div class="footer-policies">
    {{ footer_menu }}
  </div>
  <div class="footer-social">
    {% render 'social-icons' %}
  </div>
</div>

Adjust CSS (base.css or theme.css)

.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
}

.footer-policies, .footer-social {
  display: flex;
  gap: 15px;
}

Website link please …

link fixed, no password protection anymore.

Hi @Jasper337

Please share your store URL and password (if it’s password-protected),
so that I can check and provide you with the exact solution.

Without this page URL, I cannot do anything here for you. You need to provide link details, so that we can further check.