How can I remove the border around my menu drop down in the Dawn theme?

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 :slightly_smiling_face:

1 Like

Hey @mgrp ,

Go to your theme’s “Edit Code” Option, then in the search bar type “theme.liquid”
Below the tag “” tag paste the following. Screenshot attached for reference.


Screenshot is for reference only, the correct code to paste is the one shown above.

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!

BRILLIANT! As always thank you!!! worked perfectly

Thanks so much, the first code worked!

1 Like