Try adding the following towards the bottom of your theme's stylesheet or wherever you are instructed to place custom CSS, I have just set the font color to white but you can set it whatever you like.
.gform_wrapper span.ginput_product_price, .gform_wrapper span.ginput_total {
color: white !important;
}
The above will style both the same but if you want to use different colors you would split that rule like so
.gform_wrapper span.ginput_product_price {
color: white !important;
}
.gform_wrapper span.ginput_total {
color: white !important;
}
Regards,
Richard
Posted 11 years ago on Wednesday May 29, 2013 |
Permalink