On mobile show translation but not country select

i have a code to currently hide both, however i want the translation part to stay and the country / currency part to go away. im speaking of the .menu-drawer__localization.header_localization. Is there a way to fix this? to display only one of them?

Hello @Anacondan ,

I hope you are well!

Can you please provide me the store URL so that I can check it and provide you the CSS which will fix the issue.

Thank you! Armwrestling.shop

@AiTrillion armwrestling.shop

@AiTrillion did you find?

Can you please confirm if you have removed the - menu-drawer__localization.header_localization – CSS or class?

@AiTrillion yes, its currebtly hidden because i want to only show the translate part not the country / currency select. Do you want me to undo the hiding?

Hi @Anacondan,

Please go to Actions > Edit code > Assets > base.css file and paste this at the bottom of the file:

@media only screen and (max-width: 989px) {
    .menu-drawer__localization.header-localization {
        display: block !important;
    }
#HeaderCountryMobileForm {
    display: none !important;
}
}

If I helped you, then a Like would be truly appreciated.

1 Like