I’m setting up a new store, and I noticed that the boxes where you pick the variants are simply plan, instead of displaying “pick your x.”
See this page for an example of what I mean:
https://felinepalace.com/products/calming-cat-nest
The size, color, and interior fabric variant categories are all blanks.
What might be going wrong here?
Hello,
- Go to Online Store->Theme->Edit code
- Asset->theme.css paste bellow code in bottom of file
.product-form select {
color: #3a3a3a;
}
Thanks
2 Likes
Thanks! This brought back the categories, but the little selector arrow on the right side of the box is not there. I’ve attached a screenshot of what I mean.
1 Like
And here’s a picture of an example of the arrows I’m talking about:
Replace previous css with this one
.product-form select {
color: #3a3a3a;
background-image: url(data:image/svg+xml;utf8,);
}
Note: The icon you show in screen-shot is for input quantity not for select box.
Thanks
1 Like
Hi Guleria. I updated this code as you suggested, but the arrow is still not showing up on my drop down menus. Any suggestions?