Shopify themes, liquid, logos, and UX
Hi everyone, I recently was able to get rid of the border around one of my drop down menus but I also want to get rid of the border on another one, my country selector drop down seems to have a slight border around it and it doesn't match my other menu dropdown, it currently looks like this
site is https://d9423d-93.myshopify.com/. any help removing that would be appreciated 🙂
Solved! Go to the solution
This is an accepted solution.
Hey @mgrp,
Go to your theme's "Edit Code" Option, then in the search bar type "theme.liquid"
Below the tag "<head>" tag paste the following. Screenshot attached for reference.
<style>
.disclosure__list-wrapper.country-selector {
border: none !important;
box-shadow: unset !important;
}
</style>
Screenshot is for reference only, the correct code to paste is the one shown above.
This is an accepted solution.
Hey @mgrp,
Go to your theme's "Edit Code" Option, then in the search bar type "theme.liquid"
Below the tag "<head>" tag paste the following. Screenshot attached for reference.
<style>
.disclosure__list-wrapper.country-selector {
border: none !important;
box-shadow: unset !important;
}
</style>
Screenshot is for reference only, the correct code to paste is the one shown above.
BRILLIANT! As always thank you!!! worked perfectly
Hi @mgrp
Check this one.
From your Shopify admin dashboard, click on "Online Store" and then "Themes".
Find the theme that you want to edit and click on "Actions" and then "Edit code".
In the "Assets" folder, click on "base.css, style.css or theme.css" file, depending on which file your theme uses to store its CSS styles. At the bottom of the file, add the following CSS code:
.field:before,
.localization-form__select:before {
box-shadow: none;
}
.field:after,
.localization-form__select:after {
border: 0px;
box-shadow: none;
}
.field:hover.field:after,
.localization-form__select:hover.localization-form__select:after {
box-shadow: none;
}
.field__input:focus-visible,
.localization-form__select:focus-visible.localization-form__select:after {
box-shadow: none;
}
.field__input:focus,
.localization-form__select:focus.localization-form__select:after {
box-shadow: none;
}
And Save.
Result:
Please don't forget to Like and Mark Solution to the post that helped you. Thanks!
Thanks so much, the first code worked!
Hey Community 👋 Did you know that March 15th is National Everything You Think Is W...
By JasonH Apr 1, 2025Discover how to increase the efficiency of commerce operations with Shopify Academy's l...
By Jacqui Mar 26, 2025Shopify and our financial partners regularly review and update verification requiremen...
By Jacqui Mar 14, 2025