How To Remove The Word 'Instagram' From The Country/Region Selector

Topic summary

Goal: remove the word “Instagram” from the Shopify country/region selector.

Proposed steps:

  • Edit theme.liquid and add a CSS snippet before the tag. The actual CSS code was not provided (empty code block).
  • Edit base.css and append: .disclosure__list-wrapper.country-selector { z-index: 9999; }. This raises the selector’s stacking order (z-index = visual layering) and is shown working via a screenshot, but it does not directly remove the “Instagram” text.
  • A follow-up mentions a modified code to also affect mobile and currency menus. The code was again absent (empty code block).

Technical context:

  • theme.liquid: main layout file for the theme.
  • base.css: global stylesheet where custom CSS can be added.
  • z-index: controls the stacking order of elements; higher values appear above others.

Status and outcomes:

  • No confirmed method provided to hide or remove “Instagram” from the selector in the visible replies.
  • No user confirmation of success.
  • Discussion remains unresolved; key question (how to remove the label) is unanswered.
Summarized with AI on December 25. AI used: gpt-5.

Thanks in advance!

I am looking to remove the word ‘Instagram’ from the country/region selector. Example shown below.

Hi @MMast ,

Step 1: Go to Shopify Admin → Online Store ->Theme → Edit code

Step 2: Search file theme.liquid

Step 3: Insert this code above tag:


Hope this can help you,

If our suggestions are useful, please let us know by giving it a like or marking it as a solution. Thank you :heart_eyes:

1 Like

You can follow these steps:

Step 1: Go to Online Store → Theme → Edit code.
Step 2: Open your base.css file
Step 3: Please paste the following code at the end of the file and save

.disclosure__list-wrapper.country-selector {
    z-index: 9999;
}

Here are your results:

If you have any issues or need any further information about this instruction, please do not hesitate to contact us by tagging directly at Community post. Btw, if it worked, it’s grateful if you give us a like or solution, This can greatly motivate us to contribute to our community.

1 Like

Hi @MMast , I modified the code a bit so it works in the mobile and currency menus


Hope this can help you,

If our suggestions are useful, please let us know by giving it a like or marking it as a solution. Thank you :heart_eyes:

1 Like