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
A Shopify store owner wants to relocate their currency converter from the footer to the top navigation for better visibility on both desktop and mobile devices.
Proposed Solution:
The recommended approach involves editing the theme code:
footer.liquid (typically {%- render 'currency-selector' -%} or similar)header.liquid, positioning it within the navigation structuretheme.css or base.css for proper alignment and responsive designThe solution includes sample CSS code for desktop alignment and mobile responsiveness adjustments. The discussion remains open, awaiting confirmation whether the implementation was successful or if additional assistance is needed.
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:
{%- render ‘currency-selector’ -%}
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.