You are viewing limited content. For full access, please sign in.

Question

Question

Tooltip color in modern forms

asked on August 15, 2023

Trying to use the Survey option in Cloud.

I have a form with Tooltips that are not showing due to the color the customer has.

I have found the Theme options and settings for Tooltips and set them to black.

I have the tooltip enabled as you can see below but it is grey and cannot be seen.  I have published and updated and still doesn't seem to show.

Maybe this is for the actual text of the Tooltip but where can you control the color of the (?)

Thanks,

Chris

0 0

Answer

SELECTED ANSWER
replied on August 15, 2023

I'm not sure if there's a theme setting specifically for the tooltip icon, and if not they should probably add one, but for now you can also adjust it with CSS.

Either of the following should work, just change the color to whatever value you want:

Option 1

.pdc a.field-tooltip {
  color: #000;
}

Option 2

.field-tooltip {
  color: #000 !important;
}

The first one uses a more complex/specific selector, and the second just uses !important, to ensure that they can override the default styling.

 

0 0
replied on August 15, 2023

Awesome Jason, thanks for the info and it works great

Chris

0 0

Replies

You are not allowed to reply in this post.
You are not allowed to follow up in this post.

Sign in to reply to this post.