Givewp multi step donation form
-
Hello,
I am trying to adjust the top input box to accommodate many integers up to ?10,000,000.
I have created the snippet below. While the textbox can vary. There is a problem adjusting the font size. What can be done?function override_iframe_template_styles_with_inline_styles() {
wp_add_inline_style(
/**
* Below, use give-sequoia-template-css to style the multi-step donation form
* or use give-donor-dashboards-app to style the donor dashboard
*/
‘give-sequoia-template-css’,
‘
form[id*=give-form] .give-donation-amount
input.give-amount-top {width: 240px !important;}
input.give-amount-top {font-size: 6px}
‘
);
}add_action(‘wp_print_styles’, ‘override_iframe_template_styles_with_inline_styles’, 10);
The page I need help with: [log in to see the link]
- The topic ‘Givewp multi step donation form’ is closed to new replies.