Hi everyone, I would like to be able to put the language labels in bold white and be able to change the background of the selector curtain from black to transparent. Thanks in advance and have a nice evening!
Topic summary
A Shopify store owner seeks to customize their language switcher by making language labels bold white and changing the dropdown background from black to transparent.
Solution Provided:
- Add CSS code to
component-localization-form.cssfile - Code targets
.disclosure__itemfor bold white text and.disclosure__list-wrapperfor transparent background - Access via: Online Store β Themes β Edit code β Assets
Current Status:
- Initial customization request successfully resolved
- Follow-up question: User now asks how to make language labels bold within the dropdown menu itself
- Discussion remains open awaiting response to this additional styling request
Note: Multiple solutions were offered, including an alternative hover effect, but the transparent background approach was confirmed as the preferred solution.
https://h0nusk-md.myshopify.com/
pass ciacia
Hi @Leon0125 , you can follow these steps:
Step 1: Open Online Store β Themes β Edit code
Step 2: Find component-localization-form.css file
Step 3: Paste this code at the bottom of the file
.disclosure__item {
color: white !important;
font-weight: bold !important;
}
.disclosure__list-wrapper {
background: transparent !important;
}
Result:
If this is helpful, please let us know by giving us a like and marking it as a solution. Thank you ![]()
Hello @Leon0125
Go to online store ----> themes ----> actions ----> edit code ----> assets ----> ocmponent-localization-form.css
add this code at the end of the file and save.
.disclosure__link:hover {
background-color: #d77339 !important;
}
Result
If this was helpful, hit the like button and accept the solution.
Thanks
Thanks a lot for the help but I wanted it transparent, as shown to me by B2Bridge above. Thanks anyway so much!
Perfect. Thanks really, thatβs what I was looking for. One last thing if I donβt mind: what if I wanted the language tags in bold in the dropdown too?


