You will see my issue in the product options. The font color of the drop-downs is the same color as the background of the drop-downs. I am not able to fix this in the app options. Is someone able to help with a workaround?
My website is www.ezdbsdesigns.com
Custom Box Designs > Custom Ported Box Design
The issue you are noticing in font color in your product options dropdown is most likely coming from your theme’s CSS. Unfortunately, the app does not provide options for this, you can correct the same by adding custom CSS to your Shopify theme. From your Shopify admin, go to Online Store > Themes > Edit code, then open your theme. css or base. css, then try to add the code below:
select { color: #000! important; background-color: #fff ! important; }
Adjust the colors as needed. This will replace the default dropdown style and place the text there. Remember to backup your theme before doing any changes.