Have your say in Community Polls: What was/is your greatest motivation to start your own business?

Re: Border around menu drop down DAWN theme

Solved

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

mgrp
Excursionist
22 1 3

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 

 

Screenshot 2024-04-02 at 1.03.32 PM.png

 

 

site is https://d9423d-93.myshopify.com/. any help removing that would be appreciated 🙂

Accepted Solution (1)

ThePrimeWeb
Shopify Partner
2139 616 514

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.

ThePrimeWeb_0-1712078299535.jpeg

 

Was I helpful?

Buy me a coffee

🙂

Need help with your store? contact@theprimeweb.com or check out the website
Check out our interview with Shopify!

View solution in original post

Replies 4 (4)

ThePrimeWeb
Shopify Partner
2139 616 514

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.

ThePrimeWeb_0-1712078299535.jpeg

 

Was I helpful?

Buy me a coffee

🙂

Need help with your store? contact@theprimeweb.com or check out the website
Check out our interview with Shopify!
mgrp
Excursionist
22 1 3

BRILLIANT! As always thank you!!! worked perfectly

Made4uo-Ribe
Shopify Partner
9076 2167 2677

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:

Made4uoRibe_0-1712079144816.png

 

 

 

Please don't forget to Like and Mark Solution to the post that helped you. Thanks!

If this fixed your issue, Likes and Accept as Solution are highly appreciated. Coffee tips fuel my dedication.
Get experienced Shopify developers at affordable rates—visit Made4Uo.com for a quick quote!
Need THEME UPDATES but have custom codes? No worries, for an affordable price.
Create custom Shopify pages effortlessly with PageFly's drag-and-drop ⚙️.
mgrp
Excursionist
22 1 3

Thanks so much, the first code worked!