All things Shopify and commerce
We're moving the community! Starting July 7, the current community will be read-only for approx. 2 weeks. You can browse content, but posting will be temporarily unavailable. Learn more
How to move the currency converter from footer to top navigation?
website: https://parallel51.co/
Seeking for a solution for desktop & mobile.
Thanks a lot
Hi @tiffanymwc
I totally get what you're trying to do—you want to move the currency converter from the footer to the top navigation so it’s easier for customers to find and use. That makes perfect sense, especially for improving user experience and making sure visitors can switch currencies right away.
Shopify’s default setup often places the currency converter in the footer, especially if you're using a theme that supports automatic currency conversion. To move it to the top navigation, you’ll need to tweak your theme’s code. Here’s how you can do it:
{%- render 'currency-selector' -%}
or
{%- include 'currency-selector' -%}
Now, let’s move it to the top navigation:
Example:
<div class="currency-selector">
{%- render 'currency-selector' -%}
</div>
Since you’re moving it to a new location, the design may need some tweaks to look good. You can add custom CSS inside theme.css or base.css (depends on your theme):
.currency-selector {
display: flex;
align-items: center;
margin-left: 15px; /* Adjust as needed */
}
@media (max-width: 768px) {
.currency-selector {
margin-top: 10px;
text-align: center;
}
}
This will ensure that:
That’s it! Now your currency converter should appear in the top navigation instead of the footer. If it doesn’t show up or breaks the layout, double-check the placement in header.liquid and tweak the CSS accordingly.
If you need extra help, just let me know asap. Thanks
Daisy.