Shopify Footer Fix: Moving Social Icons Below Your Logo (Even Without a Setting!)
Hey there, fellow store owners! It's your Shopify expert here, fresh off a deep dive into the community forums. You know how it goes – sometimes you have a very specific vision for your store's layout, only to find the theme editor isn't quite as flexible as you'd hoped. That's exactly what happened in a recent thread that caught my eye, and it's a common pain point: wanting to move those social media icons in the footer to a different spot, specifically right under the logo.
Our friend JustinasR kicked off the discussion, running the Roam theme and looking to relocate their social buttons to just below the site logo in the footer. The problem? No standard theme setting to do it. Sound familiar? Let's unpack what the community had to say, and how you can tackle this yourself!
Why Can't I Just Drag and Drop? Understanding Theme Limitations
First off, JustinasR's experience isn't unique. Many Shopify themes, while offering fantastic customization options, sometimes hardcode certain elements or place them in specific sections without an option to easily reorder them via drag-and-drop in the theme editor. For themes like Roam, as several community members like ZestardTech and Ploqo quickly pointed out, the social icons are often rendered in their own row or block that isn't directly configurable through the visual editor.
DanielAnderson and HBNStudio both suggested a good first check: reopening the theme editor and looking closely at the Footer section's block list. In some themes, social icons are their own draggable block. But for Roam, it seems this isn't the case. This means we'll need to roll up our sleeves and get into the theme code – but don't worry, the community provided some excellent guidance!
The Community Weighs In: Two Main Paths to Take
The collective wisdom from the thread pointed to two primary ways to achieve this footer customization:
- Direct Code Adjustment: Manually locating and moving the social icon markup within the theme's Liquid files.
- Dynamic JavaScript Relocation: A more elegant solution involving a small script to move the elements on the fly.
Always Start with Safety: Duplicate Your Theme!
Before touching any code, every single expert in the thread (ZestardTech, HBNStudio, Ploqo, Laza_Binaery) emphasized one critical step: duplicate your live theme! This creates a safe copy where you can experiment without affecting your live store. You'll find this option under Online Store > Themes > … > Duplicate.
Path 1: The Direct Code Edit (When You're Comfortable Digging In)
If you're comfortable navigating your theme's Liquid files, the direct code adjustment involves finding the existing social icon code and physically relocating it. Here's the general gist, synthesizing advice from ZestardTech, DanielAnderson, HBNStudio, and Laza_Binaery:
- Duplicate Your Theme: (Seriously, do it!)
- Open the Code Editor: In your duplicated theme, click Actions > Edit code.
- Locate the Footer Section: Social icons are almost always in the footer. Look for files like
footer.liquidor within asections/footer.liquidfile. - Find the Logo Markup: Search for the class
trusted_logo. This is what Laza_Binaery and Ploqo identified as the class for the logo in the Roam theme's footer. This will be your anchor point. - Find the Social Icon Markup: Search for "social" in your theme files. It might be a snippet like
social-media.liquidor inline markup within a

