Discuss and resolve questions on Liquid, JavaScript, themes, sales channels, and site speed enhancements.
We're moving the community! Starting July 7, the current community will be read-only for approx. 2 weeks. You can browse content, but posting will be temporarily unavailable. Learn more
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!
If you use Debut theme with no customize, it should have the theme.css inside folder assets
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>
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!