Skip to main content
Solved

Ideation Product Drop Down isn't visible - background color and text color are the same,

  • January 21, 2023
  • 2 replies
  • 31 views

I am trying to launch ideation and the product drop down is showing a white background with white text. My primary color takes over when one hovers over the items in the list. I changed the color scheme back to defaults in my staging environment, and the behavior remained the same. Is there a way to change the text color of this list so that it can be read?

Best answer by olimarrio

Hey @kristinekukich 👋,

The dropdown is being effected by the following colour: 

Theme → Cards → Text Color - Default

You can see the dropdown when I change the colour like so:

 

This also affects the colour of the product areas at the top of individual ideas:

If there was a particular reason for keeping the current colour (#f1f3f7), you could add some custom CSS to override this element like so:

.product-area-item {
color: red;
}

 

2 replies

olimarrio
Forum|alt.badge.img+5
  • Gainsight Employee ⭐️
  • Answer
  • January 23, 2023

Hey @kristinekukich 👋,

The dropdown is being effected by the following colour: 

Theme → Cards → Text Color - Default

You can see the dropdown when I change the colour like so:

 

This also affects the colour of the product areas at the top of individual ideas:

If there was a particular reason for keeping the current colour (#f1f3f7), you could add some custom CSS to override this element like so:

.product-area-item {
color: red;
}

 


  • Author
  • Contributor ⭐️⭐️
  • January 23, 2023

Thanks, @olimarrio. I just couldn’t find it. That took care of it.