Hi there,
Can you provide a link to your form so I can inspect the CSS directly? That’s the best way I can help.
HI there,
So, it seems our CSS is not being output on the page at all. Here’s a couple things you should check for that might cause that problem:
1) Go to “Donations > Settings > Display Options” and make sure that “Default Give Styles” is set to “Enabled”
2) If you have any caching or minificiation plugins, clear their caches and deactivate them (for now while testing)
Let me know what you find regarding those two issues.
Thank you for your reply. I don’t think I have any plugins of that matter. The default Give Styles is set to Enabled. Here are two images that demonstrate my current plugins.


Hi @ouardiayahiaoui
I think there might be an underlying issue here. But I need to experiment further. For the time being, please add this snippet to your site:
add_action( 'wp_enqueue_scripts', 'custom_give_register_styles' );
function custom_give_register_styles() {
wp_register_style( 'give-styles', give_get_stylesheet_uri(), array(), GIVE_VERSION, 'all' );
wp_enqueue_style( 'give-styles' );
}
If you need guidance implementing custom PHP functions on your website, we have this guide here: https://givewp.com/documentation/resources/adding-custom-functions-to-your-wordpress-website/