Change color + font-weight of IBAN-placeholder
-
Hey guys,
I would like to change color + font-weight of the placeholder of the IBAN-field. With that following code, I can change the placeholders of the credit-card-fields.function my_theme_modify_stripe_fields_styles( $styles ) { return array( 'base' => array( 'iconColor' => '#666EE8', 'color' => '#31325F', 'fontSize' => '15px', '::placeholder' => array( 'color' => '#CFD7E0', ), ), ); } add_filter( 'wc_stripe_elements_styling', 'my_theme_modify_stripe_fields_styles' );
But how is it possible to control the placeholder of the IBAN-field?
Viewing 3 replies - 1 through 3 (of 3 total)
Viewing 3 replies - 1 through 3 (of 3 total)
- The topic ‘Change color + font-weight of IBAN-placeholder’ is closed to new replies.