Editing language/currency option in menu

Hello,
how can i stop the show effect on language/currency option in menu ? The currency only shows when i get my mouse on it. I want the currency to be able to show all the time. I am sending image down below. Thank you

https://www.pickupstore.cz/

Hey @radaApeta ,

To make the currency dropdown always visible, follow these steps:

  1. Remove the hidden Attribute in HTML:

Find the element with the class disclosure_list-wrapper and remove the hidden="true"attribute.

Before:


After:


2.Update CSS to Force Visibility:

Add this CSS to ensure the dropdown stays visible:

.disclosure__list-wrapper {
  display: block !important;
}

This will override any other styles that might hide it.

Now, the currency option will always show without any interaction needed.

Let me know if you need further help!

If I was able to help you, please don’t forget to Like and mark it as the Solution!
If you’re looking for expert help with customization or coding, I’d be delighted to support you. Please don’t hesitate to reach out via the email in my signature below—I’m here to help bring your vision to life!

Best Regard,
Rajat Sharma

Hello @radaApeta
Go to online store ----> themes ----> actions ----> edit code ----> assets ---->component-localization-form.css
add this code at the end of the file and save.

span.localization-form__currency.motion-reduce {
opacity: 1;
}

result

If this was helpful, hit the like button and accept the solution.
Thanks