Hi! 
I have a small question about the layout of the dropdowns, I am using the Dawn theme and the language and currency exchange dropdowns have pointed corners, I would like to be able to make them more rounded by adjusting them.
Is there any code to do this? I also take this opportunity to ask if there is any code to remove the line that appears when hovering over these sections and make some hover effect as the letters are with little opacity and when hovering or clicking on them become white, as well as making the corners of the search engine completely round.
I attach screenshots.
Thanks in advance!
Sure, Ritu!
This is it: https://79378a-2.myshopify.com/
Thanks!
Hey @Crearten ,
To remove the border on hover you need to replace the âcomponent-localization-form.cssâ.
for that follow below steps:
- Go to online store > edit code :
- search âcomponent-localization-form.cssâ file and open it.
- find "header-localization .disclosure .localization-form__select:hover" it might located in line number 369
- Replace the code with this â.header-localization .disclosure .localization-form__select:hover {text-decoration: none;}â
For making border more rounded :
in base.css add this css : â.disclosure__list-wrapper .country-filter .field:after {border-radius: 50px !important;}â and save it.
I hope this solution will help you
Thanks,
Ritu
1 Like
Great! That worked Ritu, thanks a lot 
Would you know if anything can be done about my other doubts? That is, round the corners of the dropdowns of the country and currency selector, I attach a more graphic example:
Thanks again!
hey @Crearten ,
Itâs great that you find it helpful.
To make the border round you need to add the code to âcomponent-localization-form.cssâ.
.header-localization:not(.menu-drawer__localization) .disclosure__list-wrapper{ border-radius:30px**;** } âAdd this cssâ.
Also for making selected with border :
.disclosure__link[aria-current=âtrueâ] {border: 1px solid; border-radius: 50px; } add this into âcomponent-localization-form.cssâ.
it will now looks like this : https://prnt.sc/wUgfjUjR772x
If this helps you please mark it as an accepted solution.
Happy to help you.
Thanks,
Ritu
1 Like
This is already looking great! You are a genius Ritu. 
As a last request, could you know how to make round the corners only of the finder and hide the vertical scrollbar? It looks a bit strange now having applied the rounding mask.
Thanks a thousand times!
Hey @Crearten ,
Thank you,
Here is some css code you need to add it in base.css.
.country-selector__list::-webkit-scrollbar { width: 5px;}
.country-selector__list::-webkit-scrollbar-thumb {background: #eee; border-radius: 10px;}
Once you save it then it will look like this:
For making border more rounded :
in base.css add this css : â.disclosure__list-wrapper .country-filter .field:after {border-radius: 50px !important;}â and save it.
Thanks,
Ritu
If you need more help just contact me [email removed] nayakritu.2506@gmail.com
1 Like
You are great Ritu, you solved all my problems!
Thank you so much for the detailed explanations, keep it up. 
Have a nice day! 
1 Like