Debut Theme - Adjust width of Drop-down for variants?

kongyl
Visitor
2 0 0

Hello,

I've seen a few solutions that require a theme.scss.liquid file which I Do not have

 

IS there any way can adjust the width of my dropdown for product variants? 

 

Thanks in advance! 

Replies 2 (2)

Be_Steven
Shopify Partner
142 28 39

If you use Debut theme with no customize, it should have the theme.css inside folder assets

Quyen_Beo_0-1618418067089.png

 

If you can't find any CSS file to put your style in, you can also put those style inside .liquid file within the <style></style> tag.
eg:
<style>
.yourDropdownClass {width: 200px; max-width: 100%;}
</style>

Was my reply helpful? Please Like and ✔️ Accept Solution. This mean alot to me.
I'm looking for a remote job. Please contact me via besteven0912@gmail.com
kongyl
Visitor
2 0 0

Ah, yes I placed the code that has been provided in other solutions in the theme.css file and it seems to have worked, thanks!