Hi,
I've created a block with a radio field ( 'type' => 'radio') and a custom CSS class 'radiostyle'. I like to change the default font but I do not know how to do that. I've tried with:
.radiostyle .rwmb-input .rwmb-radio {change font here} or
.radiostyle .rwmb-input .rwmb-text {change font here}
but did not work.
Can you help me how should I do it?
This is how the field is created:
[
'id' => $prefix . 'radio_e0432gtno2d',
'name' => esc_html__( 'Radio Test', 'text-domain' ),
'type' => 'radio',
'std' => 'no',
'options' => [
'yes' => esc_html__( 'Test 1', 'text-domain' ),
'no' => esc_html__( 'Test 2', 'text-domain' ),
],
'class' => 'radiostyle',
'columns' => 12,
],
thank you.