Hi @frankel95
You can change any styling that you desire using custom CSS. You didn’t link to a site so I can’t give you specifics.
Here is a good tutorial on customizing your site’s styling. https://www.wpbeginner.com/plugins/how-to-easily-add-custom-css-to-your-wordpress-site/
Kind Regards
https://vision-controller.de/checkout
This is the link to the checkout.
My problem is that you can not read the labels above the credit card fields. Cause they are of dark color and my background is dark too.
And I cant style them because of the iframe from the plugin.
@frankel95 You can use provided filters in the plugin to customize the card form’s styling. Stripe Docs
Example (Test first):
add_filter('wc_stripe_get_element_options', function($options, $gateway){
if($gateway->id === 'stripe_cc'){
$options['appearance']['variables'] = array('colorText' => '#fff');
}
return $options;
}, 10, 2);