How to remove the search bar from the currency selector on MOBILE

Solved

How to remove the search bar from the currency selector on MOBILE

CreatorTim
Explorer
273 1 47

Hi, how can I remove the search bar from the currency selector on mobile?

 

I want to remove it from both the header and the footer.

 

Here’s my store URL: https://1049xn-ya.myshopify.com/

 

!I ONLY NEED THIS ON MOBILE; I’VE ALREADY REMOVED IT ON DESKTOP!

 

Thanks,
Tim

Accepted Solution (1)

DaisyVo
Shopify Partner
2409 302 345

This is an accepted solution.

HI @CreatorTim 

 

To complete your requests, please follow these steps:
  1. Go to Shopify Admin > Online Store > Theme > Customize > Theme Settings > Custom CSS https://prnt.sc/i8ljAMlHJUKl
  2. Paste the code provided into the Custom CSS section.

 

 

@media screen and (max-width: 768px){
.disclosure__list-wrapper.country-selector > .country-filter {
    display: none !important;
}
}

 

 

Here is the result: image_480.png

 

I hope this helps

 

Best,

 

Daisy

Please let us know if our reply is helpful by giving it a Like or marking it as a Solution!

Avada SEO & Image Optimizer - The #1 SEO solution

View solution in original post

Replies 2 (2)

DaisyVo
Shopify Partner
2409 302 345

This is an accepted solution.

HI @CreatorTim 

 

To complete your requests, please follow these steps:
  1. Go to Shopify Admin > Online Store > Theme > Customize > Theme Settings > Custom CSS https://prnt.sc/i8ljAMlHJUKl
  2. Paste the code provided into the Custom CSS section.

 

 

@media screen and (max-width: 768px){
.disclosure__list-wrapper.country-selector > .country-filter {
    display: none !important;
}
}

 

 

Here is the result: image_480.png

 

I hope this helps

 

Best,

 

Daisy

Please let us know if our reply is helpful by giving it a Like or marking it as a Solution!

Avada SEO & Image Optimizer - The #1 SEO solution
CreatorTim
Explorer
273 1 47

Thank you!