hi, we are using avis plus to create variant options for our products however the colour of the text is the same as the background in the dropdown menu.
i have attached a photo for reference, if anyone could provide a solution that would be amazing.
thanks
1 Like
Hi @bayprint , can you add a link to the product page? I can help you.
Hi @bayprint
Would you mind to share your Store URL website? with password if its unpublish. Thanks!
Hi @bayprint , You add CSS on file style css:
.avis-swatch-variants .avis-dropdown-selector ul.avis-option-values>li.avis-style-value-dropdownlist label{
color: #000;
}
Thanks for the info, try this one.
- From your Shopify admin dashboard, click on “Online Store” and then “Themes”.
- Find the theme that you want to edit and click on “Actions” and then “Edit code”.
- In the “Assets” folder, click on “base.css, style.css or theme.css” file, depending on which file your theme uses to store its CSS styles. At the bottom of the file, add the following CSS code:
.avis-option-values.avis-dropdown-option * {
color: black !important;
}
Please don’t forget to Like and Mark Solution to the post that helped you. Thanks!
1 Like
where am i adding the css? is this in the edit code part or in the custom css in theme settings?
That worked perfectly thank you for your help!