Hello!
For some reason, the labels in a gravity form are colored just on one form on one page of the site– another gravity form on another page looks normal, and I have checked for color changes not properly closed and don’t see any, so I have no idea why this might be happening.
Links are below. Any idea what the trouble is?
Thanks for your help!
Hi Julie!
Please add following code to Quick CSS
.gform_wrapper label {
color: #a8a8a8!important;
}
Cheers!
Yigit
Hi Yigit,
Thank you– this fixed all except the price and quantity labels, and I figured out how to change those myself.
The only other weird thing is that those labels and the price and order total are underlining blue on hover– how can I remove that underlining?
Hi,
Please try the following as well:
ginput_product_price:hover {
text-decoration:none !important;
}
Regards,
Rikard
Hi Rikard,
Thank you so much for the code. For some reason, it doesn’t seem to be working– I still see the underline on hover.
Any other ideas on how to fix this?
Thanks!
Hi!
Please try following code
.gform_wrapper:hover * { text-decoration: none !important; }
Best regards,
Yigit
Worked perfectly. Thank you! :)